84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
49 lines
1.5 KiB
Makefile
49 lines
1.5 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.15 2013/04/30 01:42:04 matt Exp $
|
|
|
|
SOFTFLOAT_BITS?=64
|
|
.if defined(__MINIX)
|
|
.PATH: ${ARCHDIR}/softfloat \
|
|
${LIBCDIR}/softfloat/bits${SOFTFLOAT_BITS} ${LIBCDIR}/softfloat
|
|
.else
|
|
.PATH: ${ARCHDIR}/softfloat \
|
|
${.CURDIR}/softfloat/bits${SOFTFLOAT_BITS} ${.CURDIR}/softfloat
|
|
.endif
|
|
|
|
.if defined(__MINIX)
|
|
CPPFLAGS+= -I${ARCHDIR}/softfloat -I${LIBCDIR}/softfloat
|
|
.else
|
|
CPPFLAGS+= -I${ARCHDIR}/softfloat -I${.CURDIR}/softfloat
|
|
.endif
|
|
CPPFLAGS+= -DSOFTFLOAT_FOR_GCC
|
|
|
|
SRCS.softfloat= softfloat.c
|
|
|
|
SRCS.softfloat+=fpgetround.c fpsetround.c fpgetmask.c fpsetmask.c \
|
|
fpgetsticky.c fpsetsticky.c
|
|
|
|
.if !empty(LIBC_MACHINE_ARCH:Mearm*)
|
|
SRCS.softfloat+=__aeabi_dcmpeq.c __aeabi_fcmpeq.c
|
|
SRCS.softfloat+=__aeabi_dcmpge.c __aeabi_fcmpge.c
|
|
SRCS.softfloat+=__aeabi_dcmpgt.c __aeabi_fcmpgt.c
|
|
SRCS.softfloat+=__aeabi_dcmple.c __aeabi_fcmple.c
|
|
SRCS.softfloat+=__aeabi_dcmplt.c __aeabi_fcmplt.c
|
|
SRCS.softfloat+=__aeabi_dcmpun.c __aeabi_fcmpun.c
|
|
.else
|
|
SRCS.softfloat+=eqsf2.c nesf2.c gtsf2.c gesf2.c ltsf2.c lesf2.c negsf2.c \
|
|
eqdf2.c nedf2.c gtdf2.c gedf2.c ltdf2.c ledf2.c negdf2.c \
|
|
eqtf2.c netf2.c gttf2.c getf2.c lttf2.c letf2.c negtf2.c \
|
|
nexf2.c gtxf2.c gexf2.c negxf2.c unordsf2.c unorddf2.c
|
|
.endif
|
|
|
|
SRCS+= ${SRCS.softfloat}
|
|
|
|
# XXX
|
|
.if defined(HAVE_GCC) && ${HAVE_GCC} >= 45
|
|
.if (${MACHINE_CPU} == "arm")
|
|
# See doc/HACKS for more information.
|
|
COPTS.softfloat.c+= -Wno-enum-compare -fno-tree-vrp
|
|
.elif (${MACHINE_CPU} == "mips" || \
|
|
${MACHINE_CPU} == "sh3")
|
|
COPTS.softfloat.c+= -Wno-enum-compare
|
|
.endif
|
|
.endif
|