From 2f47f304d1ffbed3869066b0cb335b7bf32a9e8d Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Sat, 5 Sep 2020 18:57:56 +0200 Subject: [PATCH 1/1] Revert "Increase compiler-warning level" This breaks compilation with older compilers. This reverts commit fcb2ff43a40299234d4bd454bee38b5b9754d2c0. --- Makefile | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/Makefile b/Makefile index bb05507..d994a7a 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,10 @@ ifeq ($(OPENWRT_BUILD),) #Normal system -CFLAGS=-Wall -Wextra -Wno-unused-parameter -pedantic -CFLAGS+= -Wno-unknown-warning-option -CFLAGS+= -Wformat=2 -CFLAGS+= -Wformat-truncation=2 -CFLAGS+= -Wwrite-strings -CFLAGS+= -Wnull-dereference -CFLAGS+= -Wuninitialized -CFLAGS+= -Wstrict-overflow -CFLAGS+= -Wdate-time -CFLAGS+= -Wundef -CFLAGS+= -Wpacked -CFLAGS+= -Wduplicated-branches -CFLAGS+= -Wduplicated-cond -CFLAGS+= -Wstrict-prototypes -CFLAGS+= -Wbad-function-cast -CFLAGS+= -Wold-style-definition -CFLAGS+= -MMD -O2 -I/opt/local/include -g - -LDFLAGS:=-L/opt/local/lib -LDLIBS:=-lusb-1.0 -lrt +CFLAGS=-MMD -O2 -Wall -I/opt/local/include -g + +LDFLAGS=-L/opt/local/lib +LDLIBS=-lusb-1.0 -lrt ifeq ($(firstword $(origin CC)),default) CC:=gcc -- 2.39.2