]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/Makefile.am
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / src / Makefile.am
CommitLineData
b2dad0e3
BK
1## Makefile for the src subdirectory of the GNU C++ Standard library.
2##
5fb0445d 3## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
adc8a1e3 4## 2006, 2007, 2008, 2009
530539d9 5## Free Software Foundation, Inc.
b2dad0e3
BK
6##
7## This file is part of the libstdc++ version 3 distribution.
8## Process this file with automake to produce Makefile.in.
9
10## This file is part of the GNU ISO C++ Library. This library is free
11## software; you can redistribute it and/or modify it under the
12## terms of the GNU General Public License as published by the
13## Free Software Foundation; either version 2, or (at your option)
14## any later version.
15
16## This library is distributed in the hope that it will be useful,
17## but WITHOUT ANY WARRANTY; without even the implied warranty of
18## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19## GNU General Public License for more details.
20
21## You should have received a copy of the GNU General Public License along
22## with this library; see the file COPYING. If not, write to the Free
83f51799 23## Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
b2dad0e3
BK
24## USA.
25
0df3f383 26include $(top_srcdir)/fragment.am
ae9dc931 27
714e9334 28# Cross compiler support.
b2dad0e3
BK
29toolexeclib_LTLIBRARIES = libstdc++.la
30
6aa43d99 31# Symbol versioning for shared libraries.
fb5c309d
BK
32if ENABLE_SYMVERS
33libstdc++-symbols.ver: ${glibcxx_srcdir}/$(SYMVER_FILE) \
f9314d01 34 $(port_specific_symbol_files)
fb5c309d 35 cp ${glibcxx_srcdir}/$(SYMVER_FILE) ./libstdc++-symbols.ver
593124a7 36 chmod +w ./libstdc++-symbols.ver
0df3f383 37 if test "x$(port_specific_symbol_files)" != x; then \
6defecc2
JJ
38 if grep '^# Appended to version file.' \
39 $(port_specific_symbol_files) /dev/null > /dev/null 2>&1; then \
40 cat $(port_specific_symbol_files) >> $@; \
41 else \
42 sed -n '1,/DO NOT DELETE/p' $@ > tmp.top; \
43 sed -n '/DO NOT DELETE/,$$p' $@ > tmp.bottom; \
44 cat tmp.top $(port_specific_symbol_files) tmp.bottom > $@; \
45 rm tmp.top tmp.bottom; \
46 fi; \
e6b7a69a 47 fi
f9314d01
GK
48
49if ENABLE_SYMVERS_GNU
fb5c309d
BK
50version_arg = -Wl,--version-script=libstdc++-symbols.ver
51version_dep = libstdc++-symbols.ver
52endif
3cbc7af0
BK
53if ENABLE_SYMVERS_GNU_NAMESPACE
54version_arg = -Wl,--version-script=libstdc++-symbols.ver
55version_dep = libstdc++-symbols.ver
56endif
fb5c309d
BK
57if ENABLE_SYMVERS_DARWIN
58version_arg = -Wl,-exported_symbols_list,libstdc++-symbols.explist
59version_dep = libstdc++-symbols.explist
60libstdc++-symbols.explist : libstdc++-symbols.ver \
a9fdd472
GK
61 ${glibcxx_srcdir}/scripts/make_exports.pl \
62 $(libstdc___la_OBJECTS) $(libstdc___la_LIBADD)
63 perl ${glibcxx_srcdir}/scripts/make_exports.pl \
fb5c309d 64 libstdc++-symbols.ver \
a9fdd472
GK
65 $(libstdc___la_OBJECTS:%.lo=.libs/%.o) \
66 `echo $(libstdc___la_LIBADD) | \
67 sed 's,/\([^/.]*\)\.la,/.libs/\1.a,g'` \
68 > $@ || (rm -f $@ ; exit 1)
fb5c309d 69endif
a9fdd472 70else
6aa43d99 71version_arg =
7b865c36 72version_dep =
6aa43d99
BK
73endif
74
5b80666b 75
6aa43d99 76# Source files linked in via configuration/make substitution for a
a30335e9
BK
77# particular host.
78host_sources = \
2c5d0ae8 79 atomicity.cc \
38cca750
BK
80 codecvt_members.cc \
81 collate_members.cc \
82 ctype_members.cc \
83 messages_members.cc \
84 monetary_members.cc \
85 numeric_members.cc \
2c5d0ae8 86 time_members.cc
38cca750 87
ca618b60
PE
88codecvt_members.cc: ${glibcxx_srcdir}/$(CCODECVT_CC)
89 $(LN_S) ${glibcxx_srcdir}/$(CCODECVT_CC) . || true
6aa43d99 90
ca618b60
PE
91collate_members.cc: ${glibcxx_srcdir}/$(CCOLLATE_CC)
92 $(LN_S) ${glibcxx_srcdir}/$(CCOLLATE_CC) . || true
6aa43d99 93
ca618b60
PE
94ctype_members.cc: ${glibcxx_srcdir}/$(CCTYPE_CC)
95 $(LN_S) ${glibcxx_srcdir}/$(CCTYPE_CC) . || true
6aa43d99 96
ca618b60
PE
97messages_members.cc: ${glibcxx_srcdir}/$(CMESSAGES_CC)
98 $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_CC) . || true
6aa43d99 99
ca618b60
PE
100monetary_members.cc: ${glibcxx_srcdir}/$(CMONEY_CC)
101 $(LN_S) ${glibcxx_srcdir}/$(CMONEY_CC) . || true
6aa43d99 102
ca618b60
PE
103numeric_members.cc: ${glibcxx_srcdir}/$(CNUMERIC_CC)
104 $(LN_S) ${glibcxx_srcdir}/$(CNUMERIC_CC) . || true
6aa43d99 105
ca618b60
PE
106time_members.cc: ${glibcxx_srcdir}/$(CTIME_CC)
107 $(LN_S) ${glibcxx_srcdir}/$(CTIME_CC) . || true
6aa43d99 108
2c5d0ae8
BK
109atomicity_file = ${glibcxx_srcdir}/$(ATOMICITY_SRCDIR)/atomicity.h
110atomicity.cc: ${atomicity_file}
111 $(LN_S) ${atomicity_file} ./atomicity.cc || true
112
6aa43d99 113# Source files linked in via configuration/make substitution for a
a30335e9
BK
114# particular host, but with ad hoc naming rules.
115host_sources_extra = \
c2ba9709 116 basic_file.cc c++locale.cc ${ldbl_compat_sources} ${parallel_sources}
38cca750 117
ca618b60
PE
118c++locale.cc: ${glibcxx_srcdir}/$(CLOCALE_CC)
119 $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_CC) ./$@ || true
6aa43d99 120
ca618b60
PE
121basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC)
122 $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_CC) ./$@ || true
6aa43d99 123
c2ba9709 124if ENABLE_PARALLEL
ee1b5fc5 125parallel_sources = parallel_list.cc parallel_settings.cc
c2ba9709
JS
126else
127parallel_sources =
128endif
129
6defecc2
JJ
130if GLIBCXX_LDBL_COMPAT
131ldbl_compat_sources = compatibility-ldbl.cc
132else
133ldbl_compat_sources =
134endif
135
38cca750
BK
136# Sources present in the src directory.
137sources = \
d466a7e2 138 atomic.cc \
1399eca1 139 bitmap_allocator.cc \
8bfd0a46
BK
140 pool_allocator.cc \
141 mt_allocator.cc \
7f2e0dff 142 codecvt.cc \
bb2b2a24 143 compatibility.cc \
7f2e0dff 144 complex_io.cc \
7f2e0dff 145 ctype.cc \
285b36d6 146 debug.cc \
7f2e0dff 147 functexcept.cc \
9adfc73c
BK
148 hash.cc \
149 hash_c++0x.cc \
c755e77d 150 globals_io.cc \
4d007574 151 hashtable.cc \
eeb77d99 152 hashtable_c++0x.cc \
7f2e0dff 153 ios.cc \
93d04686 154 ios_failure.cc \
c755e77d
BK
155 ios_init.cc \
156 ios_locale.cc \
7f2e0dff 157 limits.cc \
5fb0445d 158 limits_c++0x.cc \
e135a038 159 list.cc \
c2ba9709 160 debug_list.cc \
7f2e0dff 161 locale.cc \
c755e77d
BK
162 locale_init.cc \
163 locale_facets.cc \
7f2e0dff 164 localename.cc \
7d4260a3 165 math_stubs_float.cc \
1457ddca 166 math_stubs_long_double.cc \
c755e77d 167 stdexcept.cc \
c755e77d 168 strstream.cc \
0646d8a3 169 system_error.cc \
e135a038 170 tree.cc \
c755e77d
BK
171 allocator-inst.cc \
172 concept-inst.cc \
173 fstream-inst.cc \
174 ext-inst.cc \
6fbcd2e5
BK
175 ios-inst.cc \
176 iostream-inst.cc \
c755e77d 177 istream-inst.cc \
adb31ad6 178 istream.cc \
c755e77d 179 locale-inst.cc \
7f2e0dff 180 misc-inst.cc \
7f2e0dff
PE
181 ostream-inst.cc \
182 sstream-inst.cc \
7f2e0dff 183 streambuf-inst.cc \
2bf8accc 184 streambuf.cc \
7f2e0dff 185 string-inst.cc \
7f2e0dff 186 valarray-inst.cc \
c755e77d 187 wlocale-inst.cc \
38cca750 188 wstring-inst.cc \
68a97d24
BK
189 mutex.cc \
190 condition_variable.cc \
15e38d0d 191 chrono.cc \
46e113bf 192 thread.cc \
a30335e9 193 ${host_sources} \
c2ba9709 194 ${host_sources_extra}
b2dad0e3 195
d683ec81
PB
196vpath % $(top_srcdir)/src
197vpath % $(top_srcdir)
b2dad0e3 198
b2dad0e3
BK
199libstdc___la_SOURCES = $(sources)
200
5d89258a 201libstdc___la_LIBADD = \
ec6fa56a 202 $(GLIBCXX_LIBS) \
6aa43d99 203 $(top_builddir)/libsupc++/libsupc++convenience.la
b2dad0e3 204
ec6fa56a
PB
205libstdc___la_DEPENDENCIES = \
206 ${version_dep} \
ec6fa56a 207 $(top_builddir)/libsupc++/libsupc++convenience.la
b2dad0e3 208
263c6fa8 209libstdc___la_LDFLAGS = \
86025553 210 -version-info $(libtool_VERSION) ${version_arg} -lm
5d89258a 211
e08838ac
BK
212# Use special rules for the deprecated source files so that they find
213# deprecated include files.
ca618b60 214GLIBCXX_INCLUDE_DIR=$(glibcxx_builddir)/include
e08838ac 215strstream.lo: strstream.cc
3d7c150e 216 $(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
e08838ac 217strstream.o: strstream.cc
3d7c150e 218 $(CXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
e08838ac 219
4d16bdbb
PE
220# Use special rules for the concept-checking instantiations so that all
221# the generated template functions are also instantiated. Force the checks
222# to be on so that the instantiations are actually seen.
223concept-inst.lo: concept-inst.cc
3d7c150e 224 $(LTCXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
4d16bdbb 225concept-inst.o: concept-inst.cc
3d7c150e 226 $(CXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
4d16bdbb 227
847eb551
BK
228# Use special rules for parallel mode compilation.
229PARALLEL_FLAGS = -fopenmp -D_GLIBCXX_PARALLEL -I$(glibcxx_builddir)/../libgomp
c2ba9709 230parallel_list.lo: parallel_list.cc
847eb551 231 $(LTCXXCOMPILE) $(PARALLEL_FLAGS) -c $<
c2ba9709 232parallel_list.o: parallel_list.cc
847eb551 233 $(CXXCOMPILE) $(PARALLEL_FLAGS) -c $<
c2ba9709 234
ee1b5fc5
BK
235parallel_settings.lo: parallel_settings.cc
236 $(LTCXXCOMPILE) $(PARALLEL_FLAGS) -c $<
237parallel_settings.o: parallel_settings.cc
238 $(CXXCOMPILE) $(PARALLEL_FLAGS) -c $<
239
0646d8a3 240# Use special rules for the C++0x sources so that the proper flags are passed.
68a97d24
BK
241functexcept.lo: functexcept.cc
242 $(LTCXXCOMPILE) -std=gnu++0x -c $<
243functexcept.o: functexcept.cc
244 $(CXXCOMPILE) -std=gnu++0x -c $<
245
0646d8a3
BK
246system_error.lo: system_error.cc
247 $(LTCXXCOMPILE) -std=gnu++0x -c $<
248system_error.o: system_error.cc
249 $(CXXCOMPILE) -std=gnu++0x -c $<
250
68a97d24
BK
251mutex.lo: mutex.cc
252 $(LTCXXCOMPILE) -std=gnu++0x -c $<
253mutex.o: mutex.cc
254 $(CXXCOMPILE) -std=gnu++0x -c $<
255
256condition_variable.lo: condition_variable.cc
257 $(LTCXXCOMPILE) -std=gnu++0x -c $<
258condition_variable.o: condition_variable.cc
259 $(CXXCOMPILE) -std=gnu++0x -c $<
260
9adfc73c
BK
261hash_c++0x.lo: hash_c++0x.cc
262 $(LTCXXCOMPILE) -std=gnu++0x -c $<
263hash_c++0x.o: hash_c++0x.cc
264 $(CXXCOMPILE) -std=gnu++0x -c $<
265
4d007574
PC
266hashtable_c++0x.lo: hashtable_c++0x.cc
267 $(LTCXXCOMPILE) -std=gnu++0x -c $<
268hashtable_c++0x.o: hashtable_c++0x.cc
269 $(CXXCOMPILE) -std=gnu++0x -c $<
270
5fb0445d
PC
271limits_c++0x.lo: limits_c++0x.cc
272 $(LTCXXCOMPILE) -std=gnu++0x -c $<
273limits_c++0x.o: limits_c++0x.cc
274 $(CXXCOMPILE) -std=gnu++0x -c $<
275
d466a7e2 276atomic.lo: atomic.cc
7581b88a 277 $(LTCXXCOMPILE) -std=gnu++0x -c $<
d466a7e2 278atomic.o: atomic.cc
7581b88a 279 $(CXXCOMPILE) -std=gnu++0x -c $<
d466a7e2 280
988499f4
JM
281string-inst.lo: string-inst.cc
282 $(LTCXXCOMPILE) -std=gnu++0x -c $<
283string-inst.o: string-inst.cc
284 $(CXXCOMPILE) -std=gnu++0x -c $<
285
286wstring-inst.lo: wstring-inst.cc
287 $(LTCXXCOMPILE) -std=gnu++0x -c $<
288wstring-inst.o: wstring-inst.cc
289 $(CXXCOMPILE) -std=gnu++0x -c $<
290
15e38d0d
CF
291chrono.lo: chrono.cc
292 $(LTCXXCOMPILE) -std=gnu++0x -c $<
293chrono.o: chrono.cc
294 $(CXXCOMPILE) -std=gnu++0x -c $<
295
46e113bf
CF
296thread.lo: thread.cc
297 $(LTCXXCOMPILE) -std=gnu++0x -c $<
298thread.o: thread.cc
299 $(CXXCOMPILE) -std=gnu++0x -c $<
300
6defecc2
JJ
301if GLIBCXX_LDBL_COMPAT
302# Use special rules for compatibility-ldbl.cc compilation, as we need to
303# pass -mlong-double-64.
304compatibility-ldbl.lo: compatibility-ldbl.cc
305 $(LTCXXCOMPILE) -mlong-double-64 -c $<
306compatibility-ldbl.o: compatibility-ldbl.cc
307 $(CXXCOMPILE) -mlong-double-64 -c $<
308endif
309
0b8e0cf3 310# AM_CXXFLAGS needs to be in each subdirectory so that it can be
a9117427
BK
311# modified in a per-library or per-sub-library way. Need to manually
312# set this option because CONFIG_CXXFLAGS has to be after
313# OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
e6b7a69a 314# as the occasion calls for it.
0b8e0cf3 315AM_CXXFLAGS = \
47e982b2 316 -fno-implicit-templates \
0b8e0cf3
BK
317 $(WARN_CXXFLAGS) \
318 $(OPTIMIZE_CXXFLAGS) \
e6b7a69a 319 $(CONFIG_CXXFLAGS)
0b8e0cf3 320
e974e9cc 321
a9117427
BK
322# libstdc++ libtool notes
323
324# 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
325# last. (That way, things like -O2 passed down from the toplevel can
326# be overridden by --enable-debug.)
327
328# 2) In general, libtool expects an argument such as `--tag=CXX' when
329# using the C++ compiler, because that will enable the settings
330# detected when C++ support was being configured. However, when no
331# such flag is given in the command line, libtool attempts to figure
332# it out by matching the compiler name in each configuration section
333# against a prefix of the command line. The problem is that, if the
334# compiler name and its initial flags stored in the libtool
335# configuration file don't match those in the command line, libtool
336# can't decide which configuration to use, and it gives up. The
337# correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
338# CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
339# attempt to infer which configuration to use
340LTCXXCOMPILE = $(LIBTOOL) --tag CXX --mode=compile $(CXX) $(INCLUDES) \
b967bf25 341 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
e974e9cc 342
d79e6356
MM
343LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
344
787d2fb7
AO
345# 3) We'd have a problem when building the shared libstdc++ object if
346# the rules automake generates would be used. We cannot allow g++ to
347# be used since this would add -lstdc++ to the link line which of
348# course is problematic at this point. So, we get the top-level
349# directory to configure libstdc++-v3 to use gcc as the C++
350# compilation driver.
351CXXLINK = $(LIBTOOL) --tag CXX --mode=link $(CXX) \
d79e6356 352 $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
6aa43d99
BK
353
354
355# Added bits to build debug library.
3d7c150e 356if GLIBCXX_BUILD_DEBUG
6aa43d99
BK
357all-local: build_debug
358install-data-local: install_debug
359else
360all-local:
e6b7a69a 361install-data-local:
6aa43d99
BK
362endif
363
364debugdir = debug
365
9adfc73c 366# Build a set of debug objects here.
e6b7a69a 367stamp-debug:
6aa43d99
BK
368 if test ! -d ${debugdir}; then \
369 mkdir -p ${debugdir}; \
370 (cd ${debugdir}; \
7ec3af37
BK
371 sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \
372 -e 's/srcdir = \.\./srcdir = ..\/../' \
3d7c150e 373 -e 's/glibcxx_basedir = \.\./glibcxx_basedir = ..\/../' \
7ec3af37
BK
374 -e 's/all-local: build_debug/all-local:/' \
375 -e 's/install-data-local: install_debug/install-data-local:/' \
376 < ../Makefile > Makefile) ; \
6aa43d99 377 fi; \
e6b7a69a 378 echo `date` > stamp-debug;
6aa43d99
BK
379
380build_debug: stamp-debug
ca618b60 381 (cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' all)
6aa43d99
BK
382
383# Install debug library here.
e6b7a69a 384install_debug:
6aa43d99 385 (cd ${debugdir} && $(MAKE) \
ca618b60 386 toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install)