aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-07-11 16:29:51 +0100
committergingerBill <bill@gingerbill.org>2021-07-11 16:29:51 +0100
commit9a37d3b6e5d3f6a29764ef3c67b2eeeb20755b74 (patch)
tree39fe44ffc0324adb8f39d8696a9b3b88158ac14d /Makefile
parent51c4a19234fd604cf2e97dcc12c77186582ca1ea (diff)
Add -Wno-unused-value
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a80fc08be..b245ce225 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
GIT_SHA=$(shell git rev-parse --short HEAD)
-DISABLED_WARNINGS=-Wno-switch -Wno-pointer-sign -Wno-tautological-constant-out-of-range-compare -Wno-tautological-compare -Wno-macro-redefined
+DISABLED_WARNINGS=-Wno-switch -Wno-pointer-sign -Wno-tautological-constant-out-of-range-compare -Wno-tautological-compare -Wno-macro-redefined -Wno-unused-value
LDFLAGS=-pthread -ldl -lm -lstdc++
CFLAGS=-std=c++14 -DGIT_SHA=\"$(GIT_SHA)\"
CFLAGS:=$(CFLAGS) -DODIN_VERSION_RAW=\"dev-$(shell date +"%Y-%m")\"