diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-13 06:32:53 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-10-13 06:33:06 +0200 |
commit | 59051497c442d98738bf276e8d217eb6d5396152 (patch) | |
tree | f4e0eeba4171710c85cb34fa0963f9f0f2c62ac2 /toolchain/glibc | |
parent | d6f39be098dacce6ca8b2362cf82fd0dcd0b8a6d (diff) |
filter out -fno-asynchronous-unwind-tables as it breaks any newer glibc build for x86_64. gconv failures
Diffstat (limited to 'toolchain/glibc')
-rw-r--r-- | toolchain/glibc/Makefile.inc | 1 |
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}' \ |