summaryrefslogtreecommitdiff
path: root/toolchain
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-23 13:50:17 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-23 13:50:17 +0100
commit49531afeb706d6d2b4fd3b57fc8a5e24936ed727 (patch)
tree51dc6620f1871fb7ed690177367241cbd6b65df3 /toolchain
parent2271e79c0462acd21178eb03f245ed6f6b0a907b (diff)
fix arm compile
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/uClibc/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile
index c691a8b2b..94a81391d 100644
--- a/toolchain/uClibc/Makefile
+++ b/toolchain/uClibc/Makefile
@@ -105,7 +105,10 @@ $(WRKBUILD)/.installed: $(WRKBUILD)/.install_headers
$(WRKBUILD)/.fixup:
# DOSTRIP kills x86 target (ld.so can not map libc.so.0), always use DODEBUG
+ # DODEBUG compile failure linking with libgcc_eh.a on arm hf
+ifneq ($(ADK_LINUX_ARM),y)
$(SED) 's,DOSTRIP,DODEBUG,' ${WRKBUILD}/.config
+endif
$(MAKE) -C $(WRKBUILD) \
PREFIX=$(STAGING_TARGET_DIR) \
DEVEL_PREFIX=/usr/ \