libc: require ifunc-capable linker for amd64/i386
We expect to introduce optimized libc routines in the near future, which requires use of a linker that supports ifuncs. Approved by: re (gjb, kib) Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
7c1dc0fa1e
commit
ef8030831e
@ -21,6 +21,11 @@ LIBC_ARCH=${MACHINE_ARCH}
|
||||
LIBC_ARCH=${MACHINE_CPUARCH}
|
||||
.endif
|
||||
|
||||
.if (${LIBC_ARCH} == amd64 || ${LIBC_ARCH} == i386) && \
|
||||
defined(LINKER_FEATURES) && ${LINKER_FEATURES:Mifunc} == ""
|
||||
.error ${LIBC_ARCH} libc requires linker ifunc support
|
||||
.endif
|
||||
|
||||
# All library objects contain FreeBSD revision strings by default; they may be
|
||||
# excluded as a space-saving measure. To produce a library that does
|
||||
# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS
|
||||
|
Loading…
x
Reference in New Issue
Block a user