1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Fabian_Gr=C3=BCnbichler?= <debian@fabian.gruenbichler.email>
Date: Thu, 5 Sep 2024 15:14:01 +0200
Subject: disable on-by-default linker warning
Forwarded: not-needed
---
Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/Makefile b/Makefile
index 0847a0b..8b90bbf 100644
--- a/Makefile
+++ b/Makefile
@@ -445,6 +445,7 @@ CFLAGS += -Wall -Wextra -Werror \
-Wno-missing-braces \
-Wno-ignored-pragmas \
-Wno-unused-but-set-variable \
+ -Wno-unused-command-line-argument \
-Wno-unknown-warning-option \
-Wno-unterminated-string-initialization
|