aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-19 14:44:53 +0100
committergingerBill <bill@gingerbill.org>2021-08-19 14:44:53 +0100
commit33239324b83c7a32471fe147c1539fb86ca48404 (patch)
tree4cec71a6848d7eb4e9c399e5be33003e71b24cbf /Makefile
parent82a74ebfa988ed1e5236db2db3bba85143bd27a2 (diff)
Improve the C++ to be more correct for clang on Windows, still requiring the same disabled warnings as on *nix
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2570261f0..1fc35a622 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 -Wno-unused-value
+DISABLED_WARNINGS=-Wno-switch -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")\"