2011-02-02 21:34:36 +02:00
|
|
|
--- a/gcc/config/arm/linux-eabi.h
|
|
|
|
+++ b/gcc/config/arm/linux-eabi.h
|
2012-01-15 00:52:40 +02:00
|
|
|
@@ -63,10 +63,14 @@
|
2011-02-02 21:34:36 +02:00
|
|
|
#undef GLIBC_DYNAMIC_LINKER
|
|
|
|
#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.3"
|
|
|
|
|
|
|
|
+/* For armv4 we pass --fix-v4bx to linker to support EABI */
|
|
|
|
+#undef TARGET_FIX_V4BX_SPEC
|
|
|
|
+#define TARGET_FIX_V4BX_SPEC " %{mcpu=arm8|mcpu=arm810|mcpu=strongarm*|march=armv4:--fix-v4bx}"
|
|
|
|
+
|
|
|
|
/* At this point, bpabi.h will have clobbered LINK_SPEC. We want to
|
|
|
|
use the GNU/Linux version, not the generic BPABI version. */
|
|
|
|
#undef LINK_SPEC
|
2011-07-12 16:34:18 +03:00
|
|
|
-#define LINK_SPEC BE8_LINK_SPEC \
|
|
|
|
+#define LINK_SPEC BE8_LINK_SPEC TARGET_FIX_V4BX_SPEC \
|
2011-06-07 03:13:56 +03:00
|
|
|
LINUX_OR_ANDROID_LD (LINUX_TARGET_LINK_SPEC, \
|
2012-01-15 00:52:40 +02:00
|
|
|
LINUX_TARGET_LINK_SPEC " " ANDROID_LINK_SPEC)
|
2011-07-01 11:10:12 +03:00
|
|
|
|