70c8791e3b
In original GNU libgcc, _Unwind_Backtrace is published with GCC_3.3 version for all architectures but ARM. For ARM should be publishes with GCC_4.3.0 version. This was originally omitted in r255095, fixed in r318024 and omitted aging in LLVM libunwind implementation in r354347. For ARM _Unwind_Backtrace should be published as default with GCC_4.3.0 version , (because this is right original version) and again as normal(not-default) with GCC_3.3 version (to maintain ABI compatibility compiled/linked with wrong pre r318024 libgcc) PR: 233664
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= clibs
|
|
SHLIB_NAME= libgcc_s.so.1
|
|
SHLIBDIR?= /lib
|
|
|
|
.include <bsd.opts.mk>
|
|
|
|
MK_SSP= no
|
|
WARNS?= 2
|
|
|
|
LDFLAGS+= -nodefaultlibs
|
|
LIBADD+= c
|
|
|
|
.if ${MK_SYMVER} == "yes"
|
|
VERSION_DEF= ${.CURDIR}/Versions.def
|
|
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
|
# Export ARM AEABI unwind routines needed by libc and libthr.
|
|
.if exists(${.CURDIR}/${MACHINE_CPUARCH}/Symbol.map)
|
|
SYMBOL_MAPS+= ${.CURDIR}/${MACHINE_CPUARCH}/Symbol.map
|
|
.else
|
|
SYMBOL_MAPS+= ${.CURDIR}/SymbolDefault.map
|
|
.endif
|
|
.endif
|
|
|
|
.include "../libcompiler_rt/Makefile.inc"
|
|
.include "../libgcc_eh/Makefile.inc"
|
|
|
|
# gcc has incompatible internal declarations for __divtc3 and __multc3, but has
|
|
# no option to silence its warning, so make warnings non-fatal.
|
|
NO_WERROR.gcc=
|
|
|
|
LIBCSRCDIR= ${SRCTOP}/lib/libc
|
|
LIBMSRCDIR= ${SRCTOP}/lib/msun/src
|
|
CFLAGS+= -I${LIBCSRCDIR}/include -I${LIBCSRCDIR}/${MACHINE_CPUARCH}
|
|
CFLAGS+= -I${LIBMSRCDIR}
|
|
.PATH: ${LIBMSRCDIR}
|
|
SRCS+= s_fabs.c
|
|
SRCS+= s_fabsf.c
|
|
SRCS+= s_fabsl.c
|
|
SRCS+= s_fmax.c
|
|
SRCS+= s_fmaxf.c
|
|
SRCS+= s_logb.c
|
|
SRCS+= s_logbf.c
|
|
SRCS+= s_scalbn.c
|
|
SRCS+= s_scalbnf.c
|
|
|
|
# Don't include long double routines on architectures where long double
|
|
# is the same size as double.
|
|
.if ${MACHINE_CPUARCH} != "mips" && ${MACHINE_CPUARCH} != "arm" && \
|
|
${MACHINE_CPUARCH} != "powerpc"
|
|
SRCS+= s_fmaxl.c
|
|
SRCS+= s_logbl.c
|
|
SRCS+= s_scalbnl.c
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|