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