diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-19 07:23:50 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-19 07:23:50 +0100 |
commit | 7af345e70ac9f56d9f038b73d0333b3ee2c19c07 (patch) | |
tree | 548bcdd3442c361653d738a694059eb7c9a04720 /toolchain/glibc | |
parent | a5d38b1d44a86e3ea90e3192b5eb1ae75ac4168e (diff) | |
parent | 9bed26e23fd8d3aa6e8fd40bcb5b0a25dd9d6a36 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'toolchain/glibc')
-rw-r--r-- | toolchain/glibc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/glibc/Makefile b/toolchain/glibc/Makefile index 306927fc6..0905f2f61 100644 --- a/toolchain/glibc/Makefile +++ b/toolchain/glibc/Makefile @@ -5,13 +5,13 @@ include $(TOPDIR)/rules.mk include ../rules.mk # glibc does not compile with Os -TARGET_CFLAGS_LIBC:= $(subst Os,O2,$(TARGET_CFLAGS)) +TARGET_CFLAGS_LIBC:= $(subst Os,O2,$(TARGET_CFLAGS_LIBC)) ifneq ($(ADK_DEBUG),) TARGET_CFLAGS_LIBC+= -O2 endif # ssp partially supported -TARGET_CFLAGS:= $(filter-out -fstack-protector,$(TARGET_CFLAGS)) +TARGET_CFLAGS_LIBC:= $(filter-out -fstack-protector,$(TARGET_CFLAGS_LIBC)) include Makefile.inc include ${TOPDIR}/mk/buildhlp.mk |