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:
parent
ff1cdab863
commit
4c2df0fd2a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user