From 4c6a866a8d0d341eee5e5c271837f0422f666ff3 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 13 Sep 2017 18:51:45 -0400 Subject: [PATCH] Remove debug info statement from makefile --- GNUmakefile-cross | 1 - config.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/GNUmakefile-cross b/GNUmakefile-cross index 45ac5661..0f8359ed 100755 --- a/GNUmakefile-cross +++ b/GNUmakefile-cross @@ -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") diff --git a/config.h b/config.h index 17dd6d21..56526ebf 100644 --- a/config.h +++ b/config.h @@ -552,7 +552,7 @@ NAMESPACE_END // fail to compile with included. Later Apple compilers compile // intrinsics without 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