1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu: native: use gnu99 C dialect

This commit is contained in:
Kaspar Schleiser 2016-09-06 00:16:40 +02:00
parent 705f0c768a
commit 517efe4ccc

View File

@ -46,7 +46,7 @@ export CGANNOTATE ?= cg_annotate
export GPROF ?= gprof
# basic cflags:
export CFLAGS += -Wall -Wextra -pedantic
export CFLAGS += -Wall -Wextra -pedantic -std=gnu99
ifeq ($(shell uname -m),x86_64)
export CFLAGS += -m32
endif