diff options
author | Elliott Hughes <enh@google.com> | 2014-02-10 17:46:57 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-02-10 18:22:24 -0800 |
commit | 0266ae5f884d72da58f33a072e865ba131234a5e (patch) | |
tree | 48763b706806f544b1dec0ef98261bed6f21dee2 /libc/arch-arm/arm.mk | |
parent | eeb9a9f59a58a2f042e8f6fd1a4911ae92ac5493 (diff) | |
download | bionic-0266ae5f884d72da58f33a072e865ba131234a5e.zip bionic-0266ae5f884d72da58f33a072e865ba131234a5e.tar.gz bionic-0266ae5f884d72da58f33a072e865ba131234a5e.tar.bz2 |
Switch <elf.h> over to linux uapi under the covers.
Remove the linker's reliance on BSD cruft and use the glibc-style
ElfW macro. (Other code too, but the linker contains the majority
of the code that needs to work for Elf32 and Elf64.)
All platforms need dl_iterate_phdr_static, so it doesn't make sense
to have that part of the per-architecture configuration.
Bug: 12476126
Change-Id: I1d7f918f1303a392794a6cd8b3512ff56bd6e487
Diffstat (limited to 'libc/arch-arm/arm.mk')
-rw-r--r-- | libc/arch-arm/arm.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/arch-arm/arm.mk b/libc/arch-arm/arm.mk index 95c3b61..56b0d27 100644 --- a/libc/arch-arm/arm.mk +++ b/libc/arch-arm/arm.mk @@ -14,11 +14,8 @@ _LIBC_ARCH_COMMON_SRC_FILES := \ arch-arm/bionic/sigsetjmp.S \ arch-arm/bionic/syscall.S \ -# These are used by the static and dynamic versions of the libc -# respectively. _LIBC_ARCH_STATIC_SRC_FILES := \ arch-arm/bionic/exidx_static.c \ - bionic/dl_iterate_phdr_static.c \ _LIBC_ARCH_DYNAMIC_SRC_FILES := \ arch-arm/bionic/exidx_dynamic.c \ |