mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
ae902a5be9
Simplify the tests for 32-bit arm soft float support. For the files included only on arm, drop the test entirely. For others, test MACHINE_CPUARCH against arm. No functional change intended. File lists appear the same before / after the change. Sponsored by: Netflix Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D38582
17 lines
349 B
Makefile
17 lines
349 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Machine dependent definitions for the arm architecture.
|
|
#
|
|
|
|
SOFTFLOAT_BITS=32
|
|
|
|
# Long double is just double precision.
|
|
SRCS+=machdep_ldisd.c
|
|
SYM_MAPS+=${LIBC_SRCTOP}/arm/Symbol.map
|
|
|
|
.include "${LIBC_SRCTOP}/arm/aeabi/Makefile.inc"
|
|
|
|
.if !defined(CPUTYPE) || ${CPUTYPE:M*soft*} == ""
|
|
SYM_MAPS+=${LIBC_SRCTOP}/arm/Symbol_vfp.map
|
|
.endif
|
|
|