svn commit: r291723 - head/libexec/rtld-elf
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Thu Dec 3 21:26:01 UTC 2015
Author: nwhitehorn
Date: Thu Dec 3 21:25:59 2015
New Revision: 291723
URL: https://svnweb.freebsd.org/changeset/base/291723
Log:
Follow-on to r291666: use -ffreestanding instead of -fno-builtin.
Requested by: kib
Modified:
head/libexec/rtld-elf/Makefile
Modified: head/libexec/rtld-elf/Makefile
==============================================================================
--- head/libexec/rtld-elf/Makefile Thu Dec 3 21:24:40 2015 (r291722)
+++ head/libexec/rtld-elf/Makefile Thu Dec 3 21:25:59 2015 (r291723)
@@ -13,7 +13,7 @@ SRCS= rtld_start.S \
malloc.c xmalloc.c debug.c libmap.c
MAN= rtld.1
CSTD?= gnu99
-CFLAGS+= -Wall -DFREEBSD_ELF -DIN_RTLD -fno-builtin
+CFLAGS+= -Wall -DFREEBSD_ELF -DIN_RTLD -ffreestanding
CFLAGS+= -I${SRCTOP}/lib/csu/common
.if exists(${.CURDIR}/${MACHINE_ARCH})
RTLD_ARCH= ${MACHINE_ARCH}
More information about the svn-src-head
mailing list