mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-23 16:01:42 +00:00
Desupport the undocumented NO_QUAD option, just don't compile
the quad support on 64-bit platforms.
This commit is contained in:
parent
cc548bd9fb
commit
3029eff743
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156769
lib/libc
@ -39,7 +39,10 @@ NOASM=
|
||||
.include "${.CURDIR}/net/Makefile.inc"
|
||||
.include "${.CURDIR}/nls/Makefile.inc"
|
||||
.include "${.CURDIR}/posix1e/Makefile.inc"
|
||||
.if !defined(NO_QUAD)
|
||||
.if ${MACHINE_ARCH} != "alpha" && \
|
||||
${MACHINE_ARCH} != "amd64" && \
|
||||
${MACHINE_ARCH} != "ia64" && \
|
||||
${MACHINE_ARCH} != "sparc64"
|
||||
.include "${.CURDIR}/quad/Makefile.inc"
|
||||
.endif
|
||||
.include "${.CURDIR}/regex/Makefile.inc"
|
||||
|
@ -3,11 +3,6 @@
|
||||
# Machine dependent definitions for the alpha architecture.
|
||||
#
|
||||
|
||||
#
|
||||
# Alpha is 64-bit, so it doesn't need quad functions:
|
||||
#
|
||||
NO_QUAD=
|
||||
|
||||
# On Alpha, long double is just double precision.
|
||||
MDSRCS+=machdep_ldisd.c
|
||||
SYM_MAPS+=${.CURDIR}/alpha/Symbol.map
|
||||
|
@ -3,11 +3,6 @@
|
||||
# Machine dependent definitions for the amd64 architecture.
|
||||
#
|
||||
|
||||
#
|
||||
# AMD64 is 64-bit, so it doesn't need quad functions:
|
||||
#
|
||||
NO_QUAD=
|
||||
|
||||
# Long double is 80 bits
|
||||
GDTOASRCS+=strtopx.c
|
||||
MDSRCS+=machdep_ldisx.c
|
||||
|
@ -3,11 +3,6 @@
|
||||
# Machine dependent definitions for the alpha architecture.
|
||||
#
|
||||
|
||||
#
|
||||
# IA-64 is 64-bit, so it doesn't need quad functions:
|
||||
#
|
||||
NO_QUAD=
|
||||
|
||||
# Long double is 80 bits
|
||||
GDTOASRCS+=strtopx.c
|
||||
MDSRCS+=machdep_ldisx.c
|
||||
|
@ -5,11 +5,6 @@
|
||||
|
||||
.include "fpu/Makefile.inc"
|
||||
|
||||
#
|
||||
# sparc64 is 64-bit, so it doesn't need quad functions.
|
||||
#
|
||||
NO_QUAD=
|
||||
|
||||
# Long double is quad precision
|
||||
GDTOASRCS+=strtopQ.c
|
||||
MDSRCS+=machdep_ldisQ.c
|
||||
|
Loading…
Reference in New Issue
Block a user