Remove debug info statement from makefile

This commit is contained in:
Jeffrey Walton 2017-09-13 18:51:45 -04:00
parent 8d98417306
commit 4c6a866a8d
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ MKDIR ?= mkdir
EGREP ?= egrep
LN ?= ln -sf
$(info "EGREP: $(EGREP)")
IS_ARMV8 := $(shell $(CXX) -dumpmachine 2>&1 | $(EGREP) -i -c 'aarch32|aarch64')
CLANG_COMPILER := $(shell $(CXX) --version 2>&1 | $(EGREP) -i -c "clang")

View File

@ -552,7 +552,7 @@ NAMESPACE_END
// fail to compile with <arm_acle.h> included. Later Apple compilers compile
// intrinsics without <arm_acle.h> included. Also avoid it with GCC 4.8,
// and avoid it on Android, too.
#if defined(__ARM_ACLE) && !defined(CRYPTOPP_APPLE_CLANG_VERSION) && \
#if !defined(CRYPTOPP_APPLE_CLANG_VERSION) && \
(!defined(CRYPTOPP_GCC_VERSION) || (CRYPTOPP_GCC_VERSION >= 40900)) && \
!defined(__ANDROID__)
# define CRYPTOPP_ARM_ACLE_AVAILABLE 1