diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-01 14:52:11 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-01 14:52:11 +0000 |
commit | 8585cd4da4464a614be3492c61061f03699eaa2e (patch) | |
tree | c241fa8402a6f2b1859e5be92d6e0abe8bd4b29c /Rules.mak | |
parent | de5359a57065d40fcf11a0f609822089de79a97a (diff) |
ASFLAGS does not need to include CFLAGS as well, compile.S does it already
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -386,7 +386,6 @@ CFLAGS+=-DNDEBUG endif # Keep the check_as from being needlessly executed -ASFLAGS = $(CFLAGS) ifndef ASFLAGS_NOEXEC ifeq ($(UCLIBC_BUILD_NOEXECSTACK),y) export ASFLAGS_NOEXEC := $(call check_as,--noexecstack) @@ -394,7 +393,7 @@ else export ASFLAGS_NOEXEC := endif endif -ASFLAGS += $(ASFLAGS_NOEXEC) +ASFLAGS = $(ASFLAGS_NOEXEC) LIBGCC_CFLAGS ?= $(CFLAGS) $(CPU_CFLAGS-y) LIBGCC:=$(shell $(CC) $(LIBGCC_CFLAGS) -print-libgcc-file-name) |