1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +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 export GPROF ?= gprof
# basic cflags: # basic cflags:
export CFLAGS += -Wall -Wextra -pedantic export CFLAGS += -Wall -Wextra -pedantic -std=gnu99
ifeq ($(shell uname -m),x86_64) ifeq ($(shell uname -m),x86_64)
export CFLAGS += -m32 export CFLAGS += -m32
endif endif