summaryrefslogtreecommitdiff
path: root/qemu-arm
diff options
context:
space:
mode:
authorKrzysztof Blazewicz <blazewicz.krzysztof@gmail.com>2017-03-05 13:28:27 +0100
committerDamien George <damien.p.george@gmail.com>2017-03-23 15:32:12 +1100
commit75589272ef12d538ab7ce4f4453be85d826b5083 (patch)
treee19b60155b124a325fe8776ca2321cfef00e691a /qemu-arm
parent4a4bb84e9216a130050a13e20a19fbf476ed6e6c (diff)
all/Makefile: Remove -ansi from GCC flags, its ignored anyway.
The -ansi flag is used for C dialect selection and it is equivalent to -std=c90. Because it goes right before -std=gnu99 it is ignored as for conflicting flags GCC always uses the last one.
Diffstat (limited to 'qemu-arm')
-rw-r--r--qemu-arm/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-arm/Makefile b/qemu-arm/Makefile
index 61fc24364..e8f5b359e 100644
--- a/qemu-arm/Makefile
+++ b/qemu-arm/Makefile
@@ -15,7 +15,7 @@ INC += -I$(BUILD)
INC += -I../tools/tinytest/
CFLAGS_CORTEX_M3 = -mthumb -mcpu=cortex-m3 -mfloat-abi=soft
-CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -ansi -std=gnu99 $(CFLAGS_CORTEX_M3) $(COPT) \
+CFLAGS = $(INC) -Wall -Wpointer-arith -Werror -std=gnu99 $(CFLAGS_CORTEX_M3) $(COPT) \
-ffunction-sections -fdata-sections
#Debugging/Optimization