Makefile (9de4d0b11e34b1f79247f5b851f11f1881e29a18) | Makefile (c8b5e3de39bcfa6833d4ab2980b0dddd30edbb74) |
---|---|
1# $FreeBSD$ 2 3PACKAGE= clibs 4SHLIB_NAME= libgcc_s.so.1 5SHLIBDIR?= /lib 6 | 1# $FreeBSD$ 2 3PACKAGE= clibs 4SHLIB_NAME= libgcc_s.so.1 5SHLIBDIR?= /lib 6 |
7.include <bsd.opts.mk> 8 |
|
7MK_SSP= no 8WARNS?= 2 9 10LDFLAGS+= -nodefaultlibs 11LIBADD+= c | 9MK_SSP= no 10WARNS?= 2 11 12LDFLAGS+= -nodefaultlibs 13LIBADD+= c |
12VERSION_MAP= ${.CURDIR}/Version.map | |
13 | 14 |
15.if ${MK_SYMVER} == "yes" 16VERSION_DEF= ${.CURDIR}/Versions.def 17SYMBOL_MAPS= ${.CURDIR}/Symbol.map 18# Export ARM AEABI unwind routines needed by libc and libthr. 19.if exists(${.CURDIR}/${MACHINE_CPUARCH}/Symbol.map) 20SYMBOL_MAPS+= ${.CURDIR}/${MACHINE_CPUARCH}/Symbol.map 21.endif 22.endif 23 |
|
14.include "../libcompiler_rt/Makefile.inc" 15.include "../libgcc_eh/Makefile.inc" 16 17# gcc has incompatible internal declarations for __divtc3 and __multc3, but has 18# no option to silence its warning, so make warnings non-fatal. 19NO_WERROR.gcc= 20 21LIBCSRCDIR= ${SRCTOP}/lib/libc --- 24 unchanged lines hidden --- | 24.include "../libcompiler_rt/Makefile.inc" 25.include "../libgcc_eh/Makefile.inc" 26 27# gcc has incompatible internal declarations for __divtc3 and __multc3, but has 28# no option to silence its warning, so make warnings non-fatal. 29NO_WERROR.gcc= 30 31LIBCSRCDIR= ${SRCTOP}/lib/libc --- 24 unchanged lines hidden --- |