Date: Thu, 3 Dec 2015 21:25:59 +0000 (UTC) From: Nathan Whitehorn <nwhitehorn@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291723 - head/libexec/rtld-elf Message-ID: <201512032125.tB3LPxIN046476@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512032125.tB3LPxIN046476>