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.
51 lines
1.7 KiB
Makefile
51 lines
1.7 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../Makefile.ver"
|
|
|
|
.PATH: ${GCCDIR}/doc ${GCCDIR}/doc/include
|
|
|
|
INFO= gcc cpp gccint cppinternals
|
|
|
|
INFOSECTION= "Gcc Documentation"
|
|
INFOENTRY_gcc= "* gcc: (gcc). The GNU C compiler."
|
|
INFOENTRY_cpp= "* cpp: (cpp). The GNU C pre-processor."
|
|
INFOENTRY_gccint= "* gccint: (gccint). The GNU compiler family internal documentation."
|
|
INFOENTRY_cppinternals= "* cppinternals: (cppinternals). The GNU compiler preprocessor internal documentation."
|
|
|
|
gcc.info: gcc.texi gcc-common.texi gcc-vers.texi frontends.texi \
|
|
standards.texi invoke.texi extend.texi md.texi objc.texi \
|
|
gcov.texi trouble.texi bugreport.texi service.texi \
|
|
contribute.texi compat.texi funding.texi gnu.texi gpl.texi \
|
|
fdl.texi contrib.texi cppenv.texi cppopts.texi \
|
|
implement-c.texi
|
|
|
|
gccint.info: gccint.texi gcc-common.texi gcc-vers.texi \
|
|
contribute.texi makefile.texi configterms.texi options.texi \
|
|
portability.texi interface.texi passes.texi c-tree.texi \
|
|
rtl.texi md.texi tm.texi hostconfig.texi fragments.texi \
|
|
configfiles.texi collect2.texi headerdirs.texi funding.texi \
|
|
gnu.texi gpl.texi fdl.texi contrib.texi languages.texi \
|
|
sourcebuild.texi gty.texi libgcc.texi cfg.texi tree-ssa.texi \
|
|
loop.texi
|
|
|
|
cpp.info: cpp.texi fdl.texi cppenv.texi cppopts.texi gcc-common.texi \
|
|
gcc-vers.texi
|
|
|
|
cppinternals.info: cppinternals.texi gcc-common.texi gcc-vers.texi
|
|
|
|
MAKEINFOFLAGS+= -I ${GCCDIR}/doc -I ${GCCDIR}/doc/include
|
|
|
|
gcc-vers.texi:
|
|
(echo "@set version-GCC $(BASEVER)"; \
|
|
if [ "$(DEVPHASE)" = "experimental" ]; then \
|
|
echo "@set DEVELOPMENT"; \
|
|
else \
|
|
echo "@clear DEVELOPMENT"; \
|
|
fi; \
|
|
echo "@set srcdir $(GCCLIB)/libiberty" ) > ${.TARGET}
|
|
|
|
CLEANFILES+= gcc-vers.texi
|
|
|
|
.include <bsd.info.mk>
|