From 643ab436fb615f914f84f5b5e3f6fc438e47f123 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Thu, 28 Mar 2019 16:20:54 +0100 Subject: [PATCH] Remove -pedantic to allow 0b0000101 style (GCC extension) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 267466c..2d07a51 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ TARGET = mgos_i2c CC = gcc # CFLAGS = -g -O -Wall -Wextra -std=c89 -pedantic -Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition -CFLAGS = -g -O2 -pedantic -Werror -Wall -Wextra -Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition +CFLAGS = -g -O2 -Werror -Wall -Wextra -Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition LINKER = gcc LFLAGS = -O -Wall -I. -lm