From 6d1652038782e6dcde3ec03c95ad540998e62535 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Wed, 20 Nov 2013 12:12:26 +0100 Subject: [PATCH] add -Wextra -pedantic to native CFLAGS it's all about code quality --- boards/native/Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/native/Makefile.include b/boards/native/Makefile.include index ddd689541b..94e9f3a967 100644 --- a/boards/native/Makefile.include +++ b/boards/native/Makefile.include @@ -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