mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-30 05:01:39 +01:00
4f35216187
incorrect assembly file that doesn't allow for vfp instructions.
13 lines
214 B
Makefile
13 lines
214 B
Makefile
# $FreeBSD$
|
|
|
|
LDBL_PREC = 53
|
|
SYM_MAPS += ${.CURDIR}/arm/Symbol.map
|
|
|
|
.if ${TARGET_ARCH} == "armv6"
|
|
ARCH_SRCS = fenv-softfp.c fenv-vfp.c
|
|
.endif
|
|
|
|
CFLAGS.fenv-vfp.c= -mfloat-abi=softfp
|
|
CFLAGS+= ${CFLAGS.${.IMPSRC:T}}
|
|
|