1# $FreeBSD$ 2 3GCCDIR= ${.CURDIR}/../../../contrib/gcc 4SRCDIR= ${.CURDIR}/../../../contrib/libstdc++ 5SUPDIR= ${SRCDIR}/libsupc++ 6 7.PATH: ${SRCDIR}/src ${SRCDIR}/libmath ${SRCDIR}/config/io \ 8 ${SRCDIR}/config/locale/generic ${SRCDIR} ${SRCDIR}/std \ 9 ${SUPDIR} ${GCCDIR} 10 11.if ${MACHINE_ARCH} == "amd64" 12NOPIC= broken # need libgcc.so or libgcc_pic.a 13NOSHARED= broken 14.endif 15 16#SUBDIR= doc 17 18LIB= stdc++ 19SHLIB_MAJOR= 4 20 21CFLAGS+= -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H 22CFLAGS+= -I${.CURDIR} -I${SUPDIR} -I${GCCDIR} 23CXXFLAGS+= -fno-implicit-templates -ffunction-sections -fdata-sections -Wno-deprecated 24#LDFLAGS+= -Wl,-version-info,4:0:0 -Wl,--version-script=${SRCDIR}/src/linker.map 25 26LDADD+= -lm 27DPADD+= ${LIBM} 28 29# libstdc++ sources (libstdc++/src/Makefile.in, do not reorder) 30SRCS+= globals.cc limits.cc basic_file_stdio.cc complex_io.cc ios.cc \ 31 strstream-fixed.cc bitset.cc functexcept.cc stdexcept.cc \ 32 vterminate.cc ctype.cc c_locale.cc locale.cc localename.cc codecvt.cc \ 33 codecvt_members.cc collate_members.cc ctype_members.cc messages_members.cc \ 34 monetary_members.cc numeric_members.cc time_members.cc concept-inst.cc \ 35 locale-inst.cc misc-inst.cc stl-inst.cc string-inst.cc wstring-inst.cc \ 36 valarray-inst.cc ext-inst.cc fstream.cc fstream-inst.cc io-inst.cc \ 37 istream-inst.cc ostream-inst.cc streambuf-inst.cc sstream-inst.cc 38 39# C parts of math 40SRCS+= nan.c signbit.c signbitf.c signbitl.c stubs.c 41 42# Embedded copy of libsupc++ 43SRCS+= del_op.cc del_opnt.cc del_opv.cc del_opvnt.cc \ 44 eh_alloc.cc eh_aux_runtime.cc eh_catch.cc eh_exception.cc \ 45 eh_globals.cc eh_personality.cc eh_terminate.cc eh_throw.cc eh_type.cc \ 46 new_handler.cc new_op.cc new_opnt.cc new_opv.cc new_opvnt.cc \ 47 pure.cc tinfo.cc tinfo2.cc vec.cc 48 49# from libiberty: 50SRCS+= cp-demangle.c dyn-string.c 51 52strstream-fixed.cc: ${SRCDIR}/src/strstream.cc 53 sed -e 's,^#include <strstream>,#include <backward/strstream>,g' \ 54 < ${SRCDIR}/src/strstream.cc > strstream-fixed.cc 55 56CLEANFILES+= strstream-fixed.cc 57 58INCSGROUPS= BITSHDRS BKWHDRS EXTHDRS BASEHDRS BASEXHDRS STDHDRS \ 59 TARGETHDRS THRHDRS 60 61BITSHDRS= basic_ios.h basic_ios.tcc basic_string.h basic_string.tcc \ 62 boost_concept_check.h char_traits.h codecvt.h concept_check.h \ 63 cpp_type_traits.h fpos.h fstream.tcc functexcept.h \ 64 generic_shadow.h gslice.h gslice_array.h indirect_array.h \ 65 ios_base.h istream.tcc locale_facets.h locale_facets.tcc \ 66 localefwd.h mask_array.h ostream.tcc pthread_allocimpl.h \ 67 slice.h slice_array.h sstream.tcc stl_algo.h stl_algobase.h \ 68 stl_alloc.h stl_bvector.h stl_construct.h stl_deque.h \ 69 stl_function.h stl_heap.h stl_iterator.h \ 70 stl_iterator_base_funcs.h stl_iterator_base_types.h \ 71 stl_list.h stl_map.h stl_multimap.h stl_multiset.h \ 72 stl_numeric.h stl_pair.h stl_pthread_alloc.h stl_queue.h \ 73 stl_raw_storage_iter.h stl_relops.h stl_set.h stl_stack.h \ 74 stl_tempbuf.h stl_threads.h stl_tree.h stl_uninitialized.h \ 75 stl_vector.h stream_iterator.h streambuf.tcc \ 76 streambuf_iterator.h stringfwd.h type_traits.h \ 77 valarray_array.h valarray_array.tcc valarray_meta.h 78BITSHDRS:= ${BITSHDRS:S;^;${SRCDIR}/include/bits/;} 79BITSHDRSDIR= ${INCLUDEDIR}/g++/bits 80 81BKWHDRS= algo.h algobase.h alloc.h backward_warning.h bvector.h \ 82 complex.h defalloc.h deque.h fstream.h function.h \ 83 hash_map.h hash_set.h hashtable.h heap.h iomanip.h \ 84 iostream.h istream.h iterator.h list.h map.h multimap.h \ 85 multiset.h new.h ostream.h pair.h queue.h rope.h set.h \ 86 slist.h stack.h stream.h streambuf.h strstream strstream.h \ 87 tempbuf.h tree.h vector.h 88BKWHDRS:= ${BKWHDRS:S;^;${SRCDIR}/include/backward/;} 89BKWHDRSDIR= ${INCLUDEDIR}/g++/backward 90 91EXTHDRS= algorithm enc_filebuf.h functional hash_map hash_set \ 92 iterator memory numeric rb_tree rope ropeimpl.h slist \ 93 stdio_filebuf.h stl_hash_fun.h stl_hashtable.h stl_rope.h 94EXTHDRS:= ${EXTHDRS:S;^;${SRCDIR}/include/ext/;} 95EXTHDRSDIR= ${INCLUDEDIR}/g++/ext 96 97# This is the common subset of files that all three "C" header models use. 98BASEHDRS= std_cassert.h std_cctype.h std_cerrno.h std_cfloat.h \ 99 std_ciso646.h std_climits.h std_clocale.h std_cmath.h \ 100 std_csetjmp.h std_csignal.h std_cstdarg.h std_cstddef.h \ 101 std_cstdio.h std_cstdlib.h std_cstring.h std_ctime.h \ 102 std_cwchar.h std_cwctype.h 103.for h in ${BASEHDRS} 104BASEHDRSNAME_$h=${h:R:S;^std_;;} 105.endfor 106BASEHDRS:= ${BASEHDRS:S;^;${SRCDIR}/include/c_std/;} 107BASEHDRSDIR= ${INCLUDEDIR}/g++ 108 109# Some of the different "C" header models need extra files. 110BASEXHDRS= ${SRCDIR}/include/c_std/cmath.tcc 111BASEXHDRSDIR= ${INCLUDEDIR}/g++/bits 112 113STDHDRS= std_algorithm.h std_bitset.h std_complex.h std_deque.h \ 114 std_fstream.h std_functional.h std_iomanip.h std_ios.h \ 115 std_iosfwd.h std_iostream.h std_istream.h std_iterator.h \ 116 std_limits.h std_list.h std_locale.h std_map.h std_memory.h \ 117 std_numeric.h std_ostream.h std_queue.h std_set.h \ 118 std_sstream.h std_stack.h std_stdexcept.h std_streambuf.h \ 119 std_string.h std_utility.h std_valarray.h std_vector.h 120.for h in ${STDHDRS} 121STDHDRSNAME_$h=${h:R:S;^std_;;} 122.endfor 123STDHDRS:= ${STDHDRS:S;^;${SRCDIR}/include/std/;} 124STDHDRSDIR= ${INCLUDEDIR}/g++ 125 126TARGETHDRS= io/basic_file_stdio.h io/c_io_stdio.h \ 127 locale/generic/c_locale.h \ 128 locale/generic/c++locale_internal.h \ 129 locale/generic/codecvt_specializations.h \ 130 locale/generic/messages_members.h \ 131 locale/generic/time_members.h \ 132 os/bsd/freebsd/bits/ctype_base.h \ 133 os/bsd/freebsd/bits/ctype_inline.h \ 134 os/bsd/freebsd/bits/ctype_noninline.h \ 135 os/bsd/freebsd/bits/os_defines.h 136TARGETHDRS:= ${TARGETHDRS:S;^;${SRCDIR}/config/;} 137TARGETHDRS+= ${.CURDIR}/c++config.h 138TARGETHDRSNAME_basic_file_stdio.h= basic_file.h 139TARGETHDRSNAME_c_io_stdio.h= c++io.h 140TARGETHDRSNAME_c_locale.h= c++locale.h 141TARGETHDRSDIR= ${INCLUDEDIR}/g++/bits 142 143MARCHHDRS= atomicity.h cpu_limits.h 144.if ${MACHINE_ARCH} == "sparc64" 145MARCHDIR= ${SRCDIR}/config/cpu/sparc/${MACHINE_ARCH}/bits 146.else 147MARCHDIR= ${SRCDIR}/config/cpu/${MACHINE_ARCH}/bits 148.endif 149.for h in ${MARCHHDRS} 150.if exists(${MARCHDIR}/${h}) 151TARGETHDRS+= ${MARCHDIR}/${h} 152.else 153TARGETHDRS+= ${SRCDIR}/config/cpu/generic/bits/${h} 154.endif 155.endfor 156 157THRHDRS= gthr.h gthr-single.h gthr-posix.h gthr-default.h 158THRHDRSDIR= ${INCLUDEDIR}/g++/bits 159 160gthr.h: ${GCCDIR}/gthr.h 161 sed -e '/^#/s/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_][ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*\)/_GLIBCPP_\1/g' \ 162 -e 's,^#include "\(.*\)",#include <bits/\1>,g' \ 163 < ${GCCDIR}/gthr.h > gthr.h 164 165gthr-single.h: ${GCCDIR}/gthr-single.h 166 sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \ 167 -e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCPP_\1/g' \ 168 < ${GCCDIR}/gthr-single.h > gthr-single.h 169 170gthr-posix.h: ${GCCDIR}/gthr-posix.h 171 sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \ 172 -e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCPP_\1/g' \ 173 -e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*WEAK\)/_GLIBCPP_\1/g' \ 174 < ${GCCDIR}/gthr-posix.h > gthr-posix.h 175 176gthr-default.h: ${GCCDIR}/gthr-posix.h 177 sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \ 178 -e 's/\(GCC[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*_H\)/_GLIBCPP_\1/g' \ 179 -e 's/\([ABCDEFGHIJKLMNOPQRSTUVWXYZ_]*WEAK\)/_GLIBCPP_\1/g' \ 180 -e 's,^#include "\(.*\)",#include <bits/\1>,g' \ 181 < ${GCCDIR}/gthr-posix.h > gthr-default.h 182 183CLEANFILES+= ${THRHDRS} 184 185.include <bsd.lib.mk> 186