]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - gnu/lib/libstdc++/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / gnu / lib / libstdc++ / Makefile
1 # $FreeBSD$
2
3 GCCVER= 4.2
4 GCCDIR= ${.CURDIR}/../../../contrib/gcc
5 GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
6 SRCDIR= ${.CURDIR}/../../../contrib/libstdc++
7 SUPDIR= ${SRCDIR}/libsupc++
8
9 .PATH: ${SRCDIR}/src ${SRCDIR}/libmath ${SRCDIR}/config/io \
10        ${SRCDIR}/config/locale/darwin ${SRCDIR}/config/locale/generic \
11        ${SRCDIR}/include ${SUPDIR} ${GCCDIR} ${GCCLIB}/libiberty
12
13 LIB=            stdc++
14 SHLIB_MAJOR=    6
15
16 CFLAGS+=        -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H
17 .if ${MACHINE_CPUARCH} == "arm"
18 CFLAGS+=        -D_GLIBCXX_SJLJ_EXCEPTIONS=1
19 .endif
20 CFLAGS+=        -I${.CURDIR} -I${SUPDIR} -I${GCCDIR} -I${SRCDIR}/include
21 CFLAGS+=        -I${GCCLIB}/include -I${SRCDIR}/include -I.
22 CFLAGS+=        -frandom-seed=RepeatabilityConsideredGood
23 CXXFLAGS+=      -fno-implicit-templates -ffunction-sections -fdata-sections \
24                 -Wno-deprecated
25 PO_CXXFLAGS=    ${CXXFLAGS:N-ffunction-sections}
26
27 DPADD=          ${LIBM}
28 LDADD=          -lm  -Wl,-f,libsupc++.so.1
29
30 # libstdc++ sources
31 SRCS+=  bitmap_allocator.cc pool_allocator.cc \
32         mt_allocator.cc codecvt.cc compatibility.cc complex_io.cc \
33         ctype.cc debug.cc debug_list.cc functexcept.cc globals_io.cc \
34         ios.cc ios_failure.cc ios_init.cc ios_locale.cc limits.cc \
35         list.cc locale.cc locale_init.cc locale_facets.cc \
36         localename.cc stdexcept.cc strstream.cc tree.cc \
37         allocator-inst.cc concept-inst.cc fstream-inst.cc ext-inst.cc \
38         ios-inst.cc iostream-inst.cc istream-inst.cc istream.cc \
39         locale-inst.cc misc-inst.cc ostream-inst.cc sstream-inst.cc \
40         streambuf-inst.cc streambuf.cc string-inst.cc valarray-inst.cc \
41         wlocale-inst.cc wstring-inst.cc atomicity.cc \
42         codecvt_members.cc collate_members.cc ctype_members.cc \
43         messages_members.cc monetary_members.cc numeric_members.cc \
44         time_members.cc basic_file_stdio.cc c_locale.cc \
45 #       compatibility-ldbl.cc
46
47 # target sources
48 SRCS+=  atomicity.cc codecvt_members.cc collate_members.cc ctype_members.cc \
49         messages_members.cc monetary_members.cc numeric_members.cc \
50         time_members.cc
51
52 # target sources extra
53 SRCS+=  basic_file_stdio.cc c_locale.cc
54
55 # C parts of math
56 SRCS+=  stubs.c
57
58 # Embedded copy of libsupc++
59 SRCS+=  del_op.cc del_opnt.cc del_opv.cc del_opvnt.cc eh_alloc.cc eh_arm.cc \
60         eh_aux_runtime.cc eh_call.cc eh_catch.cc eh_exception.cc eh_globals.cc \
61         eh_personality.cc eh_term_handler.cc eh_terminate.cc eh_throw.cc \
62         eh_type.cc eh_unex_handler.cc guard.cc new_handler.cc new_op.cc \
63         new_opnt.cc new_opv.cc new_opvnt.cc pure.cc tinfo.cc tinfo2.cc \
64         vec.cc vterminate.cc
65
66 # from libiberty:
67 SRCS+=  cp-demangle.c
68
69 # MD headers location
70 .if ${MACHINE_CPUARCH} == "sparc64"
71 MARCHDIR=       sparc
72 .elif ${MACHINE_CPUARCH} == "i386" && ${MACHINE_CPU} != 'i386'
73 MARCHDIR=       i486
74 .elif ${MACHINE_CPUARCH} == "amd64"
75 MARCHDIR=       i486
76 .else
77 MARCHDIR=       ${MACHINE_CPUARCH}
78 .endif
79
80 .if exists(${SRCDIR}/config/cpu/${MARCHDIR}/atomicity.h)
81 ATOMICITY_H=    ${SRCDIR}/config/cpu/${MARCHDIR}/atomicity.h
82 .else
83 ATOMICITY_H=    ${SRCDIR}/config/cpu/generic/atomicity_mutex/atomicity.h
84 .endif
85
86 .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
87 .if exists(${SRCDIR}/config/cpu/generic/atomicity_builtins/atomicity.h)
88 ATOMICITY_H=    ${SRCDIR}/config/cpu/generic/atomicity_builtins/atomicity.h
89 .endif
90 .endif
91
92 atomicity.cc:   ${ATOMICITY_H}
93         ln -sf ${.ALLSRC} ${.TARGET}
94 CLEANFILES+=    atomicity.cc
95
96 INCSGROUPS=     BITSHDRS BKWHDRS EXTHDRS BASEHDRS BASEXHDRS STDHDRS \
97                 TARGETHDRS THRHDRS DEBUGHDRS TR1HDRS PBHDRS0 PBHDRS1
98 CXXINCLUDEDIR=  ${INCLUDEDIR}/c++/${GCCVER}
99
100 STDHDRS=        std_algorithm.h std_bitset.h std_complex.h std_deque.h \
101                 std_fstream.h std_functional.h std_iomanip.h std_ios.h \
102                 std_iosfwd.h std_iostream.h std_istream.h std_iterator.h \
103                 std_limits.h std_list.h std_locale.h std_map.h std_memory.h \
104                 std_numeric.h std_ostream.h std_queue.h std_set.h \
105                 std_sstream.h std_stack.h std_stdexcept.h std_streambuf.h \
106                 std_string.h std_utility.h std_valarray.h std_vector.h
107 .for h in ${STDHDRS}
108 STDHDRSNAME_$h=${h:R:S;^std_;;}
109 .endfor
110 STDHDRS:=       ${STDHDRS:S;^;${SRCDIR}/include/std/;}
111 STDHDRSDIR=     ${CXXINCLUDEDIR}
112
113 BITSHDRS=       allocator.h basic_ios.h basic_ios.tcc basic_string.h \
114                 basic_string.tcc boost_concept_check.h char_traits.h codecvt.h \
115                 concept_check.h cpp_type_traits.h deque.tcc fstream.tcc \
116                 functexcept.h gslice.h gslice_array.h indirect_array.h \
117                 ios_base.h istream.tcc list.tcc locale_classes.h \
118                 locale_facets.h locale_facets.tcc localefwd.h mask_array.h \
119                 ostream.tcc ostream_insert.h postypes.h stream_iterator.h \
120                 streambuf_iterator.h slice_array.h sstream.tcc stl_algo.h \
121                 stl_algobase.h stl_bvector.h stl_construct.h stl_deque.h \
122                 stl_function.h stl_heap.h stl_iterator.h \
123                 stl_iterator_base_funcs.h stl_iterator_base_types.h stl_list.h \
124                 stl_map.h stl_multimap.h stl_multiset.h stl_numeric.h \
125                 stl_pair.h stl_queue.h stl_raw_storage_iter.h stl_relops.h \
126                 stl_set.h stl_stack.h stl_tempbuf.h stl_tree.h \
127                 stl_uninitialized.h stl_vector.h streambuf.tcc stringfwd.h \
128                 valarray_array.h valarray_array.tcc valarray_before.h \
129                 valarray_after.h vector.tcc
130 BITSHDRS:=      ${BITSHDRS:S;^;${SRCDIR}/include/bits/;}
131 BITSHDRSDIR=    ${CXXINCLUDEDIR}/bits
132
133 BKWHDRS=        complex.h iomanip.h istream.h ostream.h stream.h streambuf.h \
134                 algo.h algobase.h alloc.h bvector.h defalloc.h deque.h \
135                 function.h hash_map.h hash_set.h hashtable.h heap.h iostream.h \
136                 iterator.h list.h map.h multimap.h new.h multiset.h pair.h \
137                 queue.h rope.h set.h slist.h stack.h tempbuf.h tree.h \
138                 vector.h fstream.h strstream backward_warning.h
139 BKWHDRS:=       ${BKWHDRS:S;^;${SRCDIR}/include/backward/;}
140 BKWHDRSDIR=     ${CXXINCLUDEDIR}/backward
141
142 EXTHDRS=        algorithm atomicity.h array_allocator.h bitmap_allocator.h \
143                 codecvt_specializations.h concurrence.h debug_allocator.h \
144                 stdio_filebuf.h stdio_sync_filebuf.h functional \
145                 hash_map hash_set hash_fun.h hashtable.h iterator \
146                 malloc_allocator.h memory mt_allocator.h new_allocator.h \
147                 numeric numeric_traits.h pod_char_traits.h pool_allocator.h \
148                 rb_tree rope ropeimpl.h slist throw_allocator.h typelist.h \
149                 type_traits.h rc_string_base.h sso_string_base.h vstring.h \
150                 vstring.tcc vstring_fwd.h vstring_util.h
151
152 EXTHDRS:=       ${EXTHDRS:S;^;${SRCDIR}/include/ext/;}
153 EXTHDRSDIR=     ${CXXINCLUDEDIR}/ext
154
155 TR1HDRS=        array bind_repeat.h bind_iterate.h boost_shared_ptr.h cctype \
156                 cfenv cfloat cinttypes climits cmath common.h complex cstdarg \
157                 cstdbool cstdint cstdio cstdlib ctgmath ctime ctype.h cwchar \
158                 cwctype fenv.h float.h functional functional_hash.h \
159                 functional_iterate.h hashtable hashtable_policy.h inttypes.h \
160                 limits.h math.h memory mu_iterate.h random random.tcc \
161                 ref_fwd.h ref_wrap_iterate.h repeat.h stdarg.h stdbool.h \
162                 stdint.h stdio.h stdlib.h tgmath.h tuple tuple_defs.h \
163                 tuple_iterate.h type_traits type_traits_fwd.h unordered_set \
164                 unordered_map utility wchar.h wctype.h
165
166 TR1HDRS:=       ${TR1HDRS:S;^;${SRCDIR}/include/tr1/;}
167 TR1HDRSDIR=     ${CXXINCLUDEDIR}/tr1
168
169 # This is the common subset of files that all three "C" header models use.
170 BASEHDRS=       std_cassert.h std_cctype.h std_cerrno.h std_cfloat.h \
171                 std_ciso646.h std_climits.h std_clocale.h std_cmath.h \
172                 std_csetjmp.h std_csignal.h std_cstdarg.h std_cstddef.h \
173                 std_cstdio.h std_cstdlib.h std_cstring.h std_ctime.h \
174                 std_cwchar.h std_cwctype.h
175 .for h in ${BASEHDRS}
176 BASEHDRSNAME_$h=${h:R:S;^std_;;}
177 .endfor
178 BASEHDRS:=      ${BASEHDRS:S;^;${SRCDIR}/include/c_std/;}
179 BASEHDRSDIR=    ${CXXINCLUDEDIR}
180
181 # Some of the different "C" header models need extra files.
182 BASEXHDRS=      ${SRCDIR}/include/c_std/cmath.tcc
183 BASEXHDRSDIR=   ${CXXINCLUDEDIR}/bits
184
185 DEBUGHDRS=      bitset debug.h deque formatter.h functions.h hash_map \
186                 hash_map.h hash_multimap.h hash_multiset.h hash_set hash_set.h \
187                 list macros.h map map.h multimap.h multiset.h safe_base.h \
188                 safe_iterator.h safe_iterator.tcc safe_sequence.h set set.h \
189                 string vector
190 DEBUGHDRS:=     ${DEBUGHDRS:S;^;${SRCDIR}/include/debug/;}
191 DEBUGHDRSDIR=   ${CXXINCLUDEDIR}/debug
192
193 # Not installed, but kept here for completeness
194 COMPATHDRS=     assert.h ctype.h errno.h float.h iso646.h limits.h locale.h \
195                 math.h setjmp.h signal.h stdarg.h stddef.h stdio.h stdlib.h \
196                 string.h time.h wchar.h wctype.h
197 COMPATHDRS:=    ${COMPATHDRS:S;^;${SRCDIR}/include/debug/;}
198 COMPATHDRSDIR=  ${CXXINCLUDEDIR}/c_compatibility
199
200 PBHDRS0 = \
201         assoc_container.hpp \
202         exception.hpp \
203         hash_policy.hpp \
204         list_update_policy.hpp \
205         priority_queue.hpp \
206         tag_and_trait.hpp \
207         tree_policy.hpp \
208         trie_policy.hpp
209 PBHDRS0:=       ${PBHDRS0:S;^;${SRCDIR}/include/ext/pb_ds/;}
210 PBHDRS0DIR=     ${CXXINCLUDEDIR}/ext/pb_ds
211
212 PBHDRS1 = \
213         basic_types.hpp \
214         cond_dealtor.hpp \
215         constructors_destructor_fn_imps.hpp \
216         container_base_dispatch.hpp \
217         map_debug_base.hpp \
218         priority_queue_base_dispatch.hpp \
219         standard_policies.hpp \
220         tree_trace_base.hpp \
221         type_utils.hpp \
222         types_traits.hpp
223 PBHDRS1:=       ${PBHDRS1:S;^;${SRCDIR}/include/ext/pb_ds/detail/;}
224 PBHDRS1DIR=     ${CXXINCLUDEDIR}/ext/pb_ds/detail
225
226 PBHDRS+= \
227         basic_tree_policy/basic_tree_policy_base.hpp \
228         basic_tree_policy/null_node_metadata.hpp \
229         basic_tree_policy/traits.hpp \
230         basic_types.hpp \
231         binary_heap_/binary_heap_.hpp \
232         binary_heap_/const_iterator.hpp \
233         binary_heap_/const_point_iterator.hpp \
234         binary_heap_/constructors_destructor_fn_imps.hpp \
235         binary_heap_/debug_fn_imps.hpp \
236         binary_heap_/entry_cmp.hpp \
237         binary_heap_/entry_pred.hpp \
238         binary_heap_/erase_fn_imps.hpp \
239         binary_heap_/find_fn_imps.hpp \
240         binary_heap_/info_fn_imps.hpp \
241         binary_heap_/insert_fn_imps.hpp \
242         binary_heap_/iterators_fn_imps.hpp \
243         binary_heap_/policy_access_fn_imps.hpp \
244         binary_heap_/resize_policy.hpp \
245         binary_heap_/split_join_fn_imps.hpp \
246         binary_heap_/trace_fn_imps.hpp \
247         binomial_heap_base_/binomial_heap_base_.hpp \
248         binomial_heap_base_/constructors_destructor_fn_imps.hpp \
249         binomial_heap_base_/debug_fn_imps.hpp \
250         binomial_heap_base_/erase_fn_imps.hpp \
251         binomial_heap_base_/find_fn_imps.hpp \
252         binomial_heap_base_/insert_fn_imps.hpp \
253         binomial_heap_base_/split_join_fn_imps.hpp \
254         binomial_heap_/binomial_heap_.hpp \
255         binomial_heap_/constructors_destructor_fn_imps.hpp \
256         binomial_heap_/debug_fn_imps.hpp \
257         bin_search_tree_/bin_search_tree_.hpp \
258         bin_search_tree_/cond_dtor_entry_dealtor.hpp \
259         bin_search_tree_/cond_key_dtor_entry_dealtor.hpp
260
261 PBHDRS+= \
262         bin_search_tree_/constructors_destructor_fn_imps.hpp \
263         bin_search_tree_/debug_fn_imps.hpp \
264         bin_search_tree_/erase_fn_imps.hpp \
265         bin_search_tree_/find_fn_imps.hpp \
266         bin_search_tree_/info_fn_imps.hpp \
267         bin_search_tree_/insert_fn_imps.hpp \
268         bin_search_tree_/iterators_fn_imps.hpp \
269         bin_search_tree_/node_iterators.hpp \
270         bin_search_tree_/point_iterators.hpp \
271         bin_search_tree_/policy_access_fn_imps.hpp \
272         bin_search_tree_/r_erase_fn_imps.hpp \
273         bin_search_tree_/rotate_fn_imps.hpp \
274         bin_search_tree_/split_join_fn_imps.hpp \
275         bin_search_tree_/traits.hpp \
276         cc_hash_table_map_/cc_ht_map_.hpp \
277         cc_hash_table_map_/cmp_fn_imps.hpp \
278         cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp \
279         cc_hash_table_map_/constructor_destructor_fn_imps.hpp \
280         cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp \
281         cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp \
282         cc_hash_table_map_/debug_fn_imps.hpp \
283         cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp \
284         cc_hash_table_map_/debug_store_hash_fn_imps.hpp \
285         cc_hash_table_map_/entry_list_fn_imps.hpp \
286         cc_hash_table_map_/erase_fn_imps.hpp \
287         cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp \
288         cc_hash_table_map_/erase_store_hash_fn_imps.hpp \
289         cc_hash_table_map_/find_fn_imps.hpp \
290         cc_hash_table_map_/find_store_hash_fn_imps.hpp \
291         cc_hash_table_map_/info_fn_imps.hpp \
292         cc_hash_table_map_/insert_fn_imps.hpp \
293         cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp \
294         cc_hash_table_map_/insert_store_hash_fn_imps.hpp \
295         cc_hash_table_map_/iterators_fn_imps.hpp \
296         cc_hash_table_map_/policy_access_fn_imps.hpp \
297         cc_hash_table_map_/resize_fn_imps.hpp \
298         cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp \
299         cc_hash_table_map_/resize_store_hash_fn_imps.hpp \
300         cc_hash_table_map_/size_fn_imps.hpp \
301         cc_hash_table_map_/standard_policies.hpp
302
303 PBHDRS+= \
304         cc_hash_table_map_/trace_fn_imps.hpp \
305         cond_dealtor.hpp \
306         constructors_destructor_fn_imps.hpp \
307         container_base_dispatch.hpp \
308         eq_fn/eq_by_less.hpp \
309         eq_fn/hash_eq_fn.hpp \
310         gp_hash_table_map_/constructor_destructor_fn_imps.hpp \
311         gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp \
312         gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp \
313         gp_hash_table_map_/debug_fn_imps.hpp \
314         gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp \
315         gp_hash_table_map_/debug_store_hash_fn_imps.hpp \
316         gp_hash_table_map_/erase_fn_imps.hpp \
317         gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp \
318         gp_hash_table_map_/erase_store_hash_fn_imps.hpp \
319         gp_hash_table_map_/find_fn_imps.hpp \
320         gp_hash_table_map_/find_no_store_hash_fn_imps.hpp \
321         gp_hash_table_map_/find_store_hash_fn_imps.hpp \
322         gp_hash_table_map_/gp_ht_map_.hpp \
323         gp_hash_table_map_/info_fn_imps.hpp \
324         gp_hash_table_map_/insert_fn_imps.hpp \
325         gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp \
326         gp_hash_table_map_/insert_store_hash_fn_imps.hpp \
327         gp_hash_table_map_/iterator_fn_imps.hpp \
328         gp_hash_table_map_/policy_access_fn_imps.hpp \
329         gp_hash_table_map_/resize_fn_imps.hpp \
330         gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp \
331         gp_hash_table_map_/resize_store_hash_fn_imps.hpp \
332         gp_hash_table_map_/standard_policies.hpp \
333         gp_hash_table_map_/trace_fn_imps.hpp \
334         hash_fn/direct_mask_range_hashing_imp.hpp \
335         hash_fn/direct_mod_range_hashing_imp.hpp \
336         hash_fn/linear_probe_fn_imp.hpp \
337         hash_fn/mask_based_range_hashing.hpp \
338         hash_fn/mod_based_range_hashing.hpp \
339         hash_fn/probe_fn_base.hpp \
340         hash_fn/quadratic_probe_fn_imp.hpp \
341         hash_fn/ranged_hash_fn.hpp \
342         hash_fn/ranged_probe_fn.hpp
343
344 PBHDRS+= \
345         hash_fn/sample_probe_fn.hpp \
346         hash_fn/sample_ranged_hash_fn.hpp \
347         hash_fn/sample_ranged_probe_fn.hpp \
348         hash_fn/sample_range_hashing.hpp \
349         left_child_next_sibling_heap_/const_iterator.hpp \
350         left_child_next_sibling_heap_/const_point_iterator.hpp \
351         left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp \
352         left_child_next_sibling_heap_/debug_fn_imps.hpp \
353         left_child_next_sibling_heap_/erase_fn_imps.hpp \
354         left_child_next_sibling_heap_/info_fn_imps.hpp \
355         left_child_next_sibling_heap_/insert_fn_imps.hpp \
356         left_child_next_sibling_heap_/iterators_fn_imps.hpp \
357         left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp \
358         left_child_next_sibling_heap_/node.hpp \
359         left_child_next_sibling_heap_/null_metadata.hpp \
360         left_child_next_sibling_heap_/policy_access_fn_imps.hpp \
361         left_child_next_sibling_heap_/trace_fn_imps.hpp \
362         list_update_map_/constructor_destructor_fn_imps.hpp \
363         list_update_map_/debug_fn_imps.hpp \
364         list_update_map_/entry_metadata_base.hpp \
365         list_update_map_/erase_fn_imps.hpp \
366         list_update_map_/find_fn_imps.hpp \
367         list_update_map_/info_fn_imps.hpp \
368         list_update_map_/insert_fn_imps.hpp \
369         list_update_map_/iterators_fn_imps.hpp \
370         list_update_map_/lu_map_.hpp \
371         list_update_map_/trace_fn_imps.hpp \
372         list_update_policy/counter_lu_metadata.hpp \
373         list_update_policy/counter_lu_policy_imp.hpp \
374         list_update_policy/mtf_lu_policy_imp.hpp \
375         list_update_policy/sample_update_policy.hpp \
376         map_debug_base.hpp \
377         ov_tree_map_/cond_dtor.hpp \
378         ov_tree_map_/constructors_destructor_fn_imps.hpp \
379         ov_tree_map_/debug_fn_imps.hpp \
380         ov_tree_map_/erase_fn_imps.hpp \
381         ov_tree_map_/info_fn_imps.hpp \
382         ov_tree_map_/insert_fn_imps.hpp \
383         ov_tree_map_/iterators_fn_imps.hpp \
384         ov_tree_map_/node_iterators.hpp \
385         ov_tree_map_/ov_tree_map_.hpp
386
387 PBHDRS+= \
388         ov_tree_map_/policy_access_fn_imps.hpp \
389         ov_tree_map_/split_join_fn_imps.hpp \
390         ov_tree_map_/traits.hpp \
391         pairing_heap_/constructors_destructor_fn_imps.hpp \
392         pairing_heap_/debug_fn_imps.hpp \
393         pairing_heap_/erase_fn_imps.hpp \
394         pairing_heap_/find_fn_imps.hpp \
395         pairing_heap_/insert_fn_imps.hpp \
396         pairing_heap_/pairing_heap_.hpp \
397         pairing_heap_/split_join_fn_imps.hpp \
398         pat_trie_/child_iterator.hpp \
399         pat_trie_/cond_dtor_entry_dealtor.hpp \
400         pat_trie_/const_child_iterator.hpp \
401         pat_trie_/constructors_destructor_fn_imps.hpp \
402         pat_trie_/debug_fn_imps.hpp \
403         pat_trie_/erase_fn_imps.hpp \
404         pat_trie_/find_fn_imps.hpp \
405         pat_trie_/head.hpp \
406         pat_trie_/info_fn_imps.hpp \
407         pat_trie_/insert_join_fn_imps.hpp \
408         pat_trie_/internal_node.hpp \
409         pat_trie_/iterators_fn_imps.hpp \
410         pat_trie_/leaf.hpp \
411         pat_trie_/node_base.hpp \
412         pat_trie_/node_iterators.hpp \
413         pat_trie_/node_metadata_base.hpp \
414         pat_trie_/pat_trie_.hpp \
415         pat_trie_/point_iterators.hpp \
416         pat_trie_/policy_access_fn_imps.hpp \
417         pat_trie_/r_erase_fn_imps.hpp \
418         pat_trie_/rotate_fn_imps.hpp \
419         pat_trie_/split_fn_imps.hpp \
420         pat_trie_/split_join_branch_bag.hpp \
421         pat_trie_/synth_e_access_traits.hpp \
422         pat_trie_/trace_fn_imps.hpp \
423         pat_trie_/traits.hpp \
424         pat_trie_/update_fn_imps.hpp \
425         priority_queue_base_dispatch.hpp \
426         rb_tree_map_/constructors_destructor_fn_imps.hpp \
427         rb_tree_map_/debug_fn_imps.hpp
428
429 PBHDRS+= \
430         rb_tree_map_/erase_fn_imps.hpp \
431         rb_tree_map_/find_fn_imps.hpp \
432         rb_tree_map_/info_fn_imps.hpp \
433         rb_tree_map_/insert_fn_imps.hpp \
434         rb_tree_map_/node.hpp \
435         rb_tree_map_/rb_tree_.hpp \
436         rb_tree_map_/split_join_fn_imps.hpp \
437         rb_tree_map_/traits.hpp \
438         rc_binomial_heap_/constructors_destructor_fn_imps.hpp \
439         rc_binomial_heap_/debug_fn_imps.hpp \
440         rc_binomial_heap_/erase_fn_imps.hpp \
441         rc_binomial_heap_/insert_fn_imps.hpp \
442         rc_binomial_heap_/rc_binomial_heap_.hpp \
443         rc_binomial_heap_/rc.hpp \
444         rc_binomial_heap_/split_join_fn_imps.hpp \
445         rc_binomial_heap_/trace_fn_imps.hpp \
446         resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp \
447         resize_policy/hash_exponential_size_policy_imp.hpp \
448         resize_policy/hash_load_check_resize_trigger_imp.hpp \
449         resize_policy/hash_load_check_resize_trigger_size_base.hpp \
450         resize_policy/hash_prime_size_policy_imp.hpp \
451         resize_policy/hash_standard_resize_policy_imp.hpp \
452         resize_policy/sample_resize_policy.hpp \
453         resize_policy/sample_resize_trigger.hpp \
454         resize_policy/sample_size_policy.hpp \
455         splay_tree_/constructors_destructor_fn_imps.hpp \
456         splay_tree_/debug_fn_imps.hpp \
457         splay_tree_/erase_fn_imps.hpp \
458         splay_tree_/find_fn_imps.hpp \
459         splay_tree_/info_fn_imps.hpp \
460         splay_tree_/insert_fn_imps.hpp \
461         splay_tree_/node.hpp \
462         splay_tree_/splay_fn_imps.hpp \
463         splay_tree_/splay_tree_.hpp \
464         splay_tree_/split_join_fn_imps.hpp \
465         splay_tree_/traits.hpp \
466         standard_policies.hpp \
467         thin_heap_/constructors_destructor_fn_imps.hpp \
468         thin_heap_/debug_fn_imps.hpp \
469         thin_heap_/erase_fn_imps.hpp
470
471 PBHDRS+= \
472         thin_heap_/find_fn_imps.hpp \
473         thin_heap_/insert_fn_imps.hpp \
474         thin_heap_/split_join_fn_imps.hpp \
475         thin_heap_/thin_heap_.hpp \
476         thin_heap_/trace_fn_imps.hpp \
477         tree_policy/node_metadata_selector.hpp \
478         tree_policy/null_node_update_imp.hpp \
479         tree_policy/order_statistics_imp.hpp \
480         tree_policy/sample_tree_node_update.hpp \
481         tree_trace_base.hpp \
482         trie_policy/node_metadata_selector.hpp \
483         trie_policy/null_node_update_imp.hpp \
484         trie_policy/order_statistics_imp.hpp \
485         trie_policy/prefix_search_node_update_imp.hpp \
486         trie_policy/sample_trie_e_access_traits.hpp \
487         trie_policy/sample_trie_node_update.hpp \
488         trie_policy/string_trie_e_access_traits_imp.hpp \
489         trie_policy/trie_policy_base.hpp \
490         types_traits.hpp \
491         type_utils.hpp \
492         unordered_iterator/const_iterator.hpp \
493         unordered_iterator/const_point_iterator.hpp \
494         unordered_iterator/iterator.hpp \
495         unordered_iterator/point_iterator.hpp
496
497 PBHDRSDIRS= \
498         pairing_heap_ \
499         splay_tree_ \
500         list_update_map_ \
501         basic_tree_policy \
502         trie_policy \
503         gp_hash_table_map_ \
504         tree_policy \
505         binomial_heap_base_ \
506         resize_policy \
507         bin_search_tree_ \
508         binomial_heap_ \
509         thin_heap_ \
510         pat_trie_ \
511         cc_hash_table_map_ \
512         rc_binomial_heap_ \
513         left_child_next_sibling_heap_ \
514         unordered_iterator \
515         binary_heap_ \
516         ov_tree_map_ \
517         hash_fn \
518         eq_fn \
519         rb_tree_map_ \
520         list_update_policy
521
522 .for D in ${PBHDRSDIRS}
523 PHDRGRP$D:=     ${PBHDRS:M$D/*:S;^;${SRCDIR}/include/ext/pb_ds/detail/;}
524 PHDRGRP$DDIR=   ${CXXINCLUDEDIR}/ext/pb_ds/detail/$D
525 INCSGROUPS+=    PHDRGRP$D
526 .endfor
527
528 TARGETHDRS=     abi/compatibility.h \
529                 allocator/new_allocator_base.h \
530                 io/basic_file_stdio.h \
531                 io/c_io_stdio.h \
532                 locale/generic/c_locale.h \
533                 locale/generic/c++locale_internal.h \
534                 locale/generic/messages_members.h \
535                 locale/generic/time_members.h \
536                 os/bsd/freebsd/ctype_base.h \
537                 os/bsd/freebsd/ctype_inline.h \
538                 os/bsd/freebsd/ctype_noninline.h \
539                 os/bsd/freebsd/os_defines.h
540 TARGETHDRS:=    ${TARGETHDRS:S;^;${SRCDIR}/config/;}
541 TARGETHDRS+=    c++config.h
542 TARGETHDRSNAME_basic_file_stdio.h= basic_file.h
543 TARGETHDRSNAME_c_io_stdio.h= c++io.h
544 TARGETHDRSNAME_c_locale.h= c++locale.h
545 TARGETHDRSNAME_new_allocator_base.h= c++allocator.h
546 TARGETHDRSDIR=  ${CXXINCLUDEDIR}/bits
547
548 MARCHHDRS=      atomic_word.h cpu_defines.h cxxabi_tweaks.h
549 .for h in ${MARCHHDRS}
550 .if exists(${SRCDIR}/config/cpu/${MARCHDIR}/${h})
551 TARGETHDRS+=    ${SRCDIR}/config/cpu/${MARCHDIR}/${h}
552 .else
553 TARGETHDRS+=    ${SRCDIR}/config/cpu/generic/${h}
554 .endif
555 .endfor
556
557 THRHDRS=        gthr.h gthr-single.h gthr-posix.h gthr-tpf.h gthr-default.h
558 THRHDRSDIR=     ${CXXINCLUDEDIR}/bits
559 uppercase =     [ABCDEFGHIJKLMNOPQRSTUVWXYZ_]
560
561 gthr.h: ${GCCDIR}/gthr.h
562         sed -e '/^#pragma/b' \
563             -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCXX_\1/g' \
564             -e 's/_GLIBCXX_SUPPORTS_WEAK/__GXX_WEAK__/g' \
565             -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
566             < ${.ALLSRC} > ${.TARGET}
567
568 gthr-single.h: ${GCCDIR}/gthr-single.h
569         sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
570             -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \
571             < ${.ALLSRC} > ${.TARGET}
572
573 gthr-posix.h: ${GCCDIR}/gthr-posix.h
574         sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
575             -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \
576             -e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
577             -e 's/\(${uppercase}*USE_WEAK\)/_GLIBCXX_\1/g' \
578             < ${.ALLSRC} > ${.TARGET}
579
580 gthr-tpf.h: ${GCCDIR}/gthr-posix.h
581         sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
582             -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \
583             -e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
584             -e 's/\(${uppercase}*USE_WEAK\)/_GLIBCXX_\1/g' \
585             < ${.ALLSRC} > ${.TARGET}
586
587 gthr-default.h: ${GCCDIR}/gthr-posix.h
588         sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \
589             -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \
590             -e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \
591             -e 's/\(${uppercase}*USE_WEAK\)/_GLIBCXX_\1/g' \
592             -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
593             < ${.ALLSRC} > ${.TARGET}
594
595 CLEANFILES+=    ${THRHDRS}
596
597 unwind.h: ${GCCDIR}/unwind-generic.h
598         ln -sf ${.ALLSRC} ${.TARGET}
599
600 SRCS+=          unwind.h
601 CLEANFILES+=    unwind.h
602
603 DATESTAMP!=     cat ${GCCDIR}/DATESTAMP
604
605 c++config.h: ${.CURDIR}/config.h ${SRCDIR}/include/bits/c++config
606         sed -e "s/\\(define __GLIBCXX__\\)/\1 ${DATESTAMP}/" \
607             -e 's/\(define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY\)/\1 1/' \
608             -e 's/\(define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION\)/\1 0/' \
609             < ${SRCDIR}/include/bits/c++config > ${.TARGET} && \
610         sed -e 's/HAVE_/_GLIBCXX_HAVE_/g' \
611             -e 's/PACKAGE/_GLIBCXX_PACKAGE/g' \
612             -e 's/VERSION/_GLIBCXX_VERSION/g' \
613             -e 's/WORDS_/_GLIBCXX_WORDS_/g' \
614             < ${.CURDIR}/config.h >> ${.TARGET} && \
615         echo "#endif // _CXXCONFIG_" >> ${.TARGET}
616 CLEANFILES+=    c++config.h
617
618 # Symbol versioning.
619
620 VERSION_MAP=    libstdc++.map
621
622 ${VERSION_MAP}: ${SRCDIR}/config/abi/pre/gnu.ver
623         ln -sf ${.ALLSRC} ${.TARGET}
624
625 CLEANFILES+=    ${VERSION_MAP}
626
627 .include <bsd.lib.mk>
628
629 # Filter out libc++-specific flags, and -std= flags above c++98 or gnu++98.
630 CXXFLAGS:=      ${CXXFLAGS:N-stdlib=libc++:N-std=c++[01][13x]:N-std=gnu++[01][13x]}