summaryrefslogtreecommitdiffstats
path: root/libexec/rtld-elf/Makefile
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2012-03-11 20:03:09 +0000
committerkib <kib@FreeBSD.org>2012-03-11 20:03:09 +0000
commit95d1e3d11bebe5f0d75da30af98fbc94ee0e5233 (patch)
treee4eae50ab265adfbfc5e1f5293bdb637284ed4f5 /libexec/rtld-elf/Makefile
parentdc94d00160d8b61f7484f9b71f42ea04a241739e (diff)
downloadFreeBSD-src-95d1e3d11bebe5f0d75da30af98fbc94ee0e5233.zip
FreeBSD-src-95d1e3d11bebe5f0d75da30af98fbc94ee0e5233.tar.gz
Add support for preinit, init and fini arrays. Some ABIs, in
particular on ARM, do require working init arrays. Traditional FreeBSD crt1 calls _init and _fini of the binary, instead of allowing runtime linker to arrange the calls. This was probably done to have the same crt code serve both statically and dynamically linked binaries. Since ABI mandates that first is called preinit array functions, then init, and then init array functions, the init have to be called from rtld now. To provide binary compatibility to old FreeBSD crt1, which calls _init itself, rtld only calls intializers and finalizers for main binary if binary has a note indicating that new crt was used for linking. Add parsing of ELF notes to rtld, and cache p_osrel value since we parsed it anyway. The patch is inspired by init_array support for DragonflyBSD, written by John Marino. Reviewed by: kan Tested by: andrew (arm, previous version), flo (sparc64, previous version) MFC after: 3 weeks
Diffstat (limited to 'libexec/rtld-elf/Makefile')
-rw-r--r--libexec/rtld-elf/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/libexec/rtld-elf/Makefile b/libexec/rtld-elf/Makefile
index 2e7925e..e00eee1 100644
--- a/libexec/rtld-elf/Makefile
+++ b/libexec/rtld-elf/Makefile
@@ -10,6 +10,7 @@ SRCS= rtld_start.S \
MAN= rtld.1
CSTD?= gnu99
CFLAGS+= -Wall -DFREEBSD_ELF -DIN_RTLD
+CFLAGS+= -I${.CURDIR}/../../lib/csu/common
.if exists(${.CURDIR}/${MACHINE_ARCH})
RTLD_ARCH= ${MACHINE_ARCH}
.else
OpenPOWER on IntegriCloud