diff options
author | andrew <andrew@FreeBSD.org> | 2014-10-01 08:26:51 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2014-10-01 08:26:51 +0000 |
commit | d588d5723d30daeacec57c225e7faed8d58d410a (patch) | |
tree | 29681418fc011c5aa424ebe29acee332df122ea6 /libexec/rtld-elf | |
parent | 3001a366c18bbc9d7b6742f6f02db34de4494ad6 (diff) | |
download | FreeBSD-src-d588d5723d30daeacec57c225e7faed8d58d410a.zip FreeBSD-src-d588d5723d30daeacec57c225e7faed8d58d410a.tar.gz |
Remove MK_ARM_EABI, the armeb issues have been fixed. The code to support
the oabi is still in the tree, but it is expected this will be removed
as developers work on surrounding code.
With this commit the ARM EABI is the only supported supported ABI by
FreeBSD on ARMa 32-bit processors.
X-MFC after: never
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D876
Diffstat (limited to 'libexec/rtld-elf')
-rw-r--r-- | libexec/rtld-elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rtld-elf/Makefile b/libexec/rtld-elf/Makefile index 6754451..cc30132 100644 --- a/libexec/rtld-elf/Makefile +++ b/libexec/rtld-elf/Makefile @@ -46,7 +46,7 @@ LDFLAGS+= -shared -Wl,-Bsymbolic DPADD= ${LIBC_PIC} LDADD= -lc_pic -.if ${MACHINE_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" +.if ${MACHINE_CPUARCH} == "arm" # Some of the required math functions (div & mod) are implemented in # libcompiler_rt on ARM. The library also needs to be placed first to be # correctly linked. As some of the functions are used before we have |