disable tautolgical compare warning in clang
disable the tautological compare warning as it is triggered by crypto++ using unsigned ints in comparisons to zero in template code. crypto++ do not show any indication of fixing it. this commit does add a dependency on grep but that should not be a major problem
This commit is contained in:
parent
4c2df0fd2a
commit
c7c18aa7e7
@ -86,12 +86,13 @@ endif
|
||||
|
||||
|
||||
###################################################
|
||||
ifeq ($(CC),clang++)
|
||||
# Fix Crypto++ warnings in clang
|
||||
|
||||
ifeq ($(shell $(CXX) --version 2>&1 | grep -i -c "clang version"),0)
|
||||
CC_OPTIONS += -Wno-tautological-compare
|
||||
CXX_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