Remove debug info statement from makefile
parent
8d98417306
commit
4c6a866a8d
|
|
@ -11,7 +11,6 @@ MKDIR ?= mkdir
|
||||||
EGREP ?= egrep
|
EGREP ?= egrep
|
||||||
LN ?= ln -sf
|
LN ?= ln -sf
|
||||||
|
|
||||||
$(info "EGREP: $(EGREP)")
|
|
||||||
IS_ARMV8 := $(shell $(CXX) -dumpmachine 2>&1 | $(EGREP) -i -c 'aarch32|aarch64')
|
IS_ARMV8 := $(shell $(CXX) -dumpmachine 2>&1 | $(EGREP) -i -c 'aarch32|aarch64')
|
||||||
CLANG_COMPILER := $(shell $(CXX) --version 2>&1 | $(EGREP) -i -c "clang")
|
CLANG_COMPILER := $(shell $(CXX) --version 2>&1 | $(EGREP) -i -c "clang")
|
||||||
|
|
||||||
|
|
|
||||||
2
config.h
2
config.h
|
|
@ -552,7 +552,7 @@ NAMESPACE_END
|
||||||
// fail to compile with <arm_acle.h> included. Later Apple compilers compile
|
// 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,
|
// intrinsics without <arm_acle.h> included. Also avoid it with GCC 4.8,
|
||||||
// and avoid it on Android, too.
|
// 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(CRYPTOPP_GCC_VERSION) || (CRYPTOPP_GCC_VERSION >= 40900)) && \
|
||||||
!defined(__ANDROID__)
|
!defined(__ANDROID__)
|
||||||
# define CRYPTOPP_ARM_ACLE_AVAILABLE 1
|
# define CRYPTOPP_ARM_ACLE_AVAILABLE 1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue