ebf45ed0c9
Also: Switch FreeBSD to use libgcc_s.so.1. Use dl_iterate_phdr to locate shared objects' exception frame info instead of depending on older register_frame_info machinery. This allows us to avoid depending on libgcc_s.so.1 in binaries that do not use exception handling directly. As an additional benefit it breaks circular libc <=> libgcc_s.so.1 dependency too. Build newly added libgomp.so.1 library, the runtime support bits for OpenMP. Build LGPLed libssp library. Our libc provides our own BSD-licensed SSP callbacks implementation, so this library is only built to benefit applications that have hadcoded knowledge of libssp.so and libssp_nonshared.a. When linked in from command line, these libraries override libc implementation.
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ${GCCDIR}/cp ${GCCDIR}
|
|
|
|
PROG= cc1plus
|
|
SRCS= cfns.h
|
|
SRCS+= main.c cp-lang.c c-opts.c call.c class.c cvt.c cxx-pretty-print.c \
|
|
decl.c decl2.c error.c except.c expr.c dump.c friend.c init.c lex.c \
|
|
mangle.c method.c name-lookup.c parser.c pt.c ptree.c repo.c rtti.c \
|
|
search.c semantics.c tree.c typeck.c typeck2.c optimize.c \
|
|
cp-objcp-common.c cp-gimplify.c tree-mudflap.c
|
|
|
|
BINDIR= /usr/libexec
|
|
NO_MAN=
|
|
NO_SHARED?=yes
|
|
|
|
CFLAGS+= -I${GCCDIR}/cp -I.
|
|
|
|
OBJS+= ${PROG}-checksum.o
|
|
DPADD= ${LIBBACKEND} ${LIBCPP} ${LIBDECNUMBER} ${LIBIBERTY}
|
|
LDADD= ${LIBBACKEND} ${LIBCPP} ${LIBDECNUMBER} ${LIBIBERTY}
|
|
|
|
#-----------------------------------------------------------------------
|
|
# C++ parser
|
|
cfns.h: cfns.gperf
|
|
gperf -o -C -E -k '1-6,$$' -j1 -D -N 'libc_name_p' -L ANSI-C \
|
|
${.ALLSRC} > ${.TARGET}
|
|
CLEANFILES= cfns.h
|
|
|
|
DOBJS+= ${SRCS:N*.h:R:S/$/.o/g}
|
|
${PROG}-dummy: ${DOBJS}
|
|
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${DOBJS} ${LDADD}
|
|
CLEANFILES+= ${PROG}-dummy
|
|
|
|
${PROG}-checksum.c: ${PROG}-dummy
|
|
../cc_tools/genchecksum ${PROG}-dummy > ${.TARGET}
|
|
CLEANFILES+= ${PROG}-checksum.c
|
|
|
|
.include <bsd.prog.mk>
|