aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorQuentin Carbonneaux <[email protected]>2023-03-15 22:07:18 +0100
committerQuentin Carbonneaux <[email protected]>2023-03-15 22:07:18 +0100
commit6f45894c7f5f145208e0fce4344b2b87eb8ae722 (patch)
tree7e7fb7a24d21f3ea36e5d8b22b5b548e77c15236 /Makefile
parent498af259eb087e38f22c7ba49615cd38e271fabd (diff)
silence some warnings
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5fadadc..c51e283 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,8 @@ OBJ = $(COMMOBJ) $(AMD64OBJ) $(ARM64OBJ) $(RV64OBJ)
SRCALL = $(OBJ:.o=.c)
-CFLAGS = $(CPPFLAGS) -Wall -Wextra -std=c99 -g -Wpedantic
+CFLAGS = $(CPPFLAGS) -std=c99 -g \
+ -Wall -Wextra -Wpedantic -Wno-format-truncation
qbe: $(OBJ)
$(CC) $(LDFLAGS) $(OBJ) -o $@