Don't warn about overlength strings in test data - libgrapheme - unicode string… | |
git clone git://git.suckless.org/libgrapheme | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit f01674957f6816d55b8ed1b38a96c4ef5e3120b2 | |
parent d56ad5ac8ac47037a86d52e3445e3c5d4dc81a4b | |
Author: Laslo Hunhold <[email protected]> | |
Date: Sun, 1 Sep 2024 14:57:28 +0200 | |
Don't warn about overlength strings in test data | |
Signed-off-by: Laslo Hunhold <[email protected]> | |
Diffstat: | |
M config.mk | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/config.mk b/config.mk | |
@@ -15,7 +15,7 @@ BINSUFFIX = | |
# flags | |
CPPFLAGS = -D_ISOC99_SOURCE | |
-CFLAGS = -std=c99 -Os -Wall -Wextra -Wpedantic | |
+CFLAGS = -std=c99 -Os -Wall -Wextra -Wpedantic -Wno-overlength-strings | |
LDFLAGS = -s | |
BUILD_CPPFLAGS = $(CPPFLAGS) |