summaryrefslogtreecommitdiff
path: root/toolchain
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-10-13 06:32:53 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-10-13 06:33:06 +0200
commit59051497c442d98738bf276e8d217eb6d5396152 (patch)
treef4e0eeba4171710c85cb34fa0963f9f0f2c62ac2 /toolchain
parentd6f39be098dacce6ca8b2362cf82fd0dcd0b8a6d (diff)
filter out -fno-asynchronous-unwind-tables as it breaks any newer glibc build for x86_64. gconv failures
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/glibc/Makefile.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/toolchain/glibc/Makefile.inc b/toolchain/glibc/Makefile.inc
index caa451a4c..70d356c21 100644
--- a/toolchain/glibc/Makefile.inc
+++ b/toolchain/glibc/Makefile.inc
@@ -53,6 +53,7 @@ endif
ifeq ($(ADK_TARGET_FLOAT),hard)
GLIBC_CONFOPTS+= --with-fp
endif
+TARGET_CFLAGS:= $(filter-out -fno-asynchronous-unwind-tables,$(TARGET_CFLAGS))
TARGET_CFLAGS:= $(filter-out -fstack-protector-all,$(TARGET_CFLAGS))
TARGET_LDFLAGS:= $(filter-out -fstack-protector-all,$(TARGET_LDFLAGS))
GLIBC_ENV:= PATH='${TARGET_PATH}' \