2c0e9e2a09
Allow CPUTYPE=soft to build the current soft-float abi libraries. Add UPDATING entry to announce this. Approved by: re@ (gjb)
18 lines
380 B
Makefile
18 lines
380 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Machine dependent definitions for the arm architecture.
|
|
#
|
|
|
|
SOFTFLOAT_BITS=32
|
|
|
|
# Long double is just double precision.
|
|
MDSRCS+=machdep_ldisd.c
|
|
SYM_MAPS+=${LIBC_SRCTOP}/arm/Symbol.map
|
|
|
|
.include "${LIBC_SRCTOP}/arm/aeabi/Makefile.inc"
|
|
|
|
.if ${MACHINE_ARCH:Marmv6*} && (!defined(CPUTYPE) || ${CPUTYPE:M*soft*} == "")
|
|
SYM_MAPS+=${LIBC_SRCTOP}/arm/Symbol_vfp.map
|
|
.endif
|
|
|