summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-03-23 15:41:04 +1100
committerDamien George <damien.p.george@gmail.com>2017-03-23 15:41:04 +1100
commit4afa782fb415165aa6e7f9eea8532f0d2493f8ce (patch)
tree7eb09d5d4d1e92abedb510b1540d36ee49560545
parent75589272ef12d538ab7ce4f4453be85d826b5083 (diff)
downloadmicropython-4afa782fb415165aa6e7f9eea8532f0d2493f8ce.tar.gz
micropython-4afa782fb415165aa6e7f9eea8532f0d2493f8ce.zip
bare-arm/Makefile: Change C standard from gnu99 to c99.
-rw-r--r--bare-arm/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/bare-arm/Makefile b/bare-arm/Makefile
index 6ee8552628..cfd427c609 100644
--- a/bare-arm/Makefile
+++ b/bare-arm/Makefile
@@ -13,7 +13,7 @@ INC += -I..
INC += -I$(BUILD)
CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mabi=aapcs-linux -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -Wdouble-promotion
-CFLAGS = $(INC) -Wall -Werror -std=gnu99 -nostdlib $(CFLAGS_CORTEX_M4) $(COPT)
+CFLAGS = $(INC) -Wall -Werror -std=c99 -nostdlib $(CFLAGS_CORTEX_M4) $(COPT)
#Debugging/Optimization
ifeq ($(DEBUG), 1)