Avoid -Wattribute-alias warnings for long double compat symbols
[official-gcc.git] / libstdc++-v3 / src / c++11 / Makefile.am
blobcf73d4d5c4cfdf6ebe0b8baf5faade066ec940f4
1 ## Makefile for the C++03 sources of the GNU C++ Standard library.
2 ##
3 ## Copyright (C) 1997-2017 Free Software Foundation, Inc.
4 ##
5 ## This file is part of the libstdc++ version 3 distribution.
6 ## Process this file with automake to produce Makefile.in.
8 ## This file is part of the GNU ISO C++ Library.  This library is free
9 ## software; you can redistribute it and/or modify it under the
10 ## terms of the GNU General Public License as published by the
11 ## Free Software Foundation; either version 3, or (at your option)
12 ## any later version.
14 ## This library is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ## GNU General Public License for more details.
19 ## You should have received a copy of the GNU General Public License along
20 ## with this library; see the file COPYING3.  If not see
21 ## <http://www.gnu.org/licenses/>.
23 include $(top_srcdir)/fragment.am
25 # Convenience library for C++11 runtime.
26 noinst_LTLIBRARIES = libc++11convenience.la
28 headers =
30 # Source files linked in via configuration/make substitution for a
31 # particular host.
32 host_sources = \
33         ctype_configure_char.cc \
34         ctype_members.cc
36 ctype_configure_char.cc: ${glibcxx_srcdir}/$(OS_INC_SRCDIR)/ctype_configure_char.cc
37         $(LN_S) ${glibcxx_srcdir}/$(OS_INC_SRCDIR)/ctype_configure_char.cc . || true
39 ctype_members.cc: ${glibcxx_srcdir}/$(CCTYPE_CC)
40         $(LN_S) ${glibcxx_srcdir}/$(CCTYPE_CC) . || true
42 if ENABLE_DUAL_ABI
43 cxx11_abi_sources = \
44         cow-locale_init.cc \
45         cow-shim_facets.cc \
46         cxx11-hash_tr1.cc \
47         cxx11-ios_failure.cc \
48         cxx11-shim_facets.cc \
49         cxx11-stdexcept.cc
50 else
51 cxx11_abi_sources =
52 endif
54 sources = \
55         chrono.cc \
56         codecvt.cc \
57         condition_variable.cc \
58         cow-stdexcept.cc \
59         ctype.cc \
60         debug.cc \
61         functexcept.cc \
62         functional.cc \
63         futex.cc \
64         future.cc \
65         hash_c++0x.cc \
66         hashtable_c++0x.cc \
67         ios.cc \
68         limits.cc \
69         mutex.cc \
70         placeholders.cc \
71         random.cc \
72         regex.cc  \
73         shared_ptr.cc \
74         snprintf_lite.cc \
75         system_error.cc \
76         thread.cc \
77         ${cxx11_abi_sources} \
78         ${host_sources}
80 if ENABLE_DUAL_ABI
81 extra_string_inst_sources = \
82         cow-fstream-inst.cc \
83         cow-sstream-inst.cc \
84         cow-string-inst.cc \
85         cow-string-io-inst.cc \
86         cow-wstring-inst.cc \
87         cow-wstring-io-inst.cc \
88         cxx11-locale-inst.cc \
89         cxx11-wlocale-inst.cc \
90         sso_string.cc
91 else
92 extra_string_inst_sources =
93 endif
95 if ENABLE_EXTERN_TEMPLATE
96 # XTEMPLATE_FLAGS = -fno-implicit-templates
97 inst_sources = \
98         $(extra_string_inst_sources) \
99         ext11-inst.cc \
100         fstream-inst.cc \
101         ios-inst.cc \
102         iostream-inst.cc \
103         istream-inst.cc \
104         locale-inst.cc \
105         ostream-inst.cc \
106         sstream-inst.cc \
107         streambuf-inst.cc \
108         string-inst.cc \
109         string-io-inst.cc \
110         wlocale-inst.cc \
111         wstring-inst.cc \
112         wstring-io-inst.cc
113 else
114 # XTEMPLATE_FLAGS =
115 inst_sources =
116 endif
118 vpath % $(top_srcdir)/src/c++11
120 libc__11convenience_la_SOURCES = $(sources)  $(inst_sources)
122 # Use special rules for the hashtable.cc file so that all
123 # the generated template functions are also instantiated.
124 hashtable_c++0x.lo: hashtable_c++0x.cc
125         $(LTCXXCOMPILE) -fimplicit-templates -c $<
126 hashtable_c++0x.o: hashtable_c++0x.cc
127         $(CXXCOMPILE) -fimplicit-templates -c $<
129 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
130 # modified in a per-library or per-sub-library way.  Need to manually
131 # set this option because CONFIG_CXXFLAGS has to be after
132 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
133 # as the occasion calls for it.
134 AM_CXXFLAGS = \
135         -std=gnu++11 \
136         $(glibcxx_lt_pic_flag) $(glibcxx_compiler_shared_flag) \
137         $(XTEMPLATE_FLAGS) $(VTV_CXXFLAGS) \
138         $(WARN_CXXFLAGS) $(OPTIMIZE_CXXFLAGS) $(CONFIG_CXXFLAGS)
140 AM_MAKEFLAGS = \
141         "gxx_include_dir=$(gxx_include_dir)"
143 # Libtool notes
145 # 1) In general, libtool expects an argument such as `--tag=CXX' when
146 # using the C++ compiler, because that will enable the settings
147 # detected when C++ support was being configured.  However, when no
148 # such flag is given in the command line, libtool attempts to figure
149 # it out by matching the compiler name in each configuration section
150 # against a prefix of the command line.  The problem is that, if the
151 # compiler name and its initial flags stored in the libtool
152 # configuration file don't match those in the command line, libtool
153 # can't decide which configuration to use, and it gives up.  The
154 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
155 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
156 # attempt to infer which configuration to use.
158 # The second tag argument, `--tag disable-shared` means that libtool
159 # only compiles each source once, for static objects. In actuality,
160 # glibcxx_lt_pic_flag and glibcxx_compiler_shared_flag are added to
161 # the libtool command that is used create the object, which is
162 # suitable for shared libraries.  The `--tag disable-shared` must be
163 # placed after --tag CXX lest things CXX undo the affect of
164 # disable-shared.
166 # 2) Need to explicitly set LTCXXCOMPILE so that EXTRA_CXX_FLAGS is
167 # last. (That way, things like -O2 passed down from the toplevel can
168 # be overridden by --enable-debug.)
169 LTCXXCOMPILE = \
170         $(LIBTOOL) --tag CXX --tag disable-shared \
171         $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
172         --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
173         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) $(EXTRA_CXX_FLAGS)
175 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
177 # 3) We'd have a problem when building the shared libstdc++ object if
178 # the rules automake generates would be used.  We cannot allow g++ to
179 # be used since this would add -lstdc++ to the link line which of
180 # course is problematic at this point.  So, we get the top-level
181 # directory to configure libstdc++-v3 to use gcc as the C++
182 # compilation driver.
183 CXXLINK = \
184         $(LIBTOOL) --tag CXX --tag disable-shared \
185         $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
186         --mode=link $(CXX) \
187         $(VTV_CXXLINKFLAGS) \
188         $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@