From 7859bd938ca843389edc85933c5e65c7f4cad0e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20A=2E=20Holm?= Date: Tue, 8 Oct 2024 08:03:10 +0200 Subject: [PATCH] c/src/Makefile: Remove `-Wall`, `-Werror` and `-Wextra` from `LDFLAGS` `-Wall` has been there more for than 26 years, and the other two were added in commit `bd53da54f3bf` ("Lib/std/c/Makefile: LDFLAGS: Add -Wextra -Werror", 2017-12-19). 65c48976-85b9-11ef-a0c4-83850402c3ce --- Lib/std/c/src/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/std/c/src/Makefile b/Lib/std/c/src/Makefile index 131df4ac..429b282c 100644 --- a/Lib/std/c/src/Makefile +++ b/Lib/std/c/src/Makefile @@ -19,9 +19,6 @@ CFLAGS += -Wextra LDFLAGS = LDFLAGS += $$(test -n "$(PROF)" && echo -n "-pg") -LDFLAGS += -Wall -LDFLAGS += -Werror -LDFLAGS += -Wextra LIBS = LIBS += $$(test -n "$(GCOV)" && echo "-lgcov --coverage") -- 2.11.4.GIT