1
0

Merge pull request #426 from SamJBarney/master

Fixed clang autodetection.
This commit is contained in:
Mattes D 2013-12-14 06:51:58 -08:00
commit 3bf65e986b

View File

@ -88,7 +88,7 @@ CXX_OPTIONS += -Wall
###################################################
# Fix Crypto++ warnings in clang
ifeq ($(shell $(CXX) --version 2>&1 | grep -i -c "clang version"),1)
ifeq ($(shell $(CXX) --version 2>&1 | grep -i -c "clang"),1)
CC_OPTIONS += -DCRYPTOPP_DISABLE_ASM
CXX_OPTIONS += -DCRYPTOPP_DISABLE_ASM
endif