1
0

disable tautological compare in clang

disable the tautological compare warning in clang as crypto++ triggers this
warning and they are ignoring it
This commit is contained in:
Tycho Bickerstaff 2013-09-10 20:59:24 +01:00
parent ff1cdab863
commit 4c2df0fd2a

View File

@ -85,6 +85,13 @@ endif
endif
###################################################
ifeq ($(CC),clang++)
CC_OPTIONS += -Wno-tautological-compare
endif
ifeq ($(CC),clang)
CC_OPTIONS += -Wno-tautological-compare
endif
###################################################
# Set the link libraries based on the OS