1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:52:44 +01:00

add -Wextra -pedantic to native CFLAGS

it's all about code quality
This commit is contained in:
Ludwig Ortmann 2013-11-20 12:12:26 +01:00
parent b355953929
commit 6d16520387

View File

@ -5,7 +5,7 @@ export CPU = native
export PREFIX =
#export CC = @$(PREFIX)gcc
export AR = @$(PREFIX)ar
export CFLAGS += -std=gnu99 -Wall -m32
export CFLAGS += -std=gnu99 -Wall -Wextra -pedantic -m32
export ASFLAGS =
export AS = $(PREFIX)as
export LINK = $(PREFIX)gcc