summaryrefslogtreecommitdiff
path: root/GNUmakefile-cross
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-16 07:42:48 -0400
committerJeffrey Walton <noloader@gmail.com>2019-10-16 07:42:48 -0400
commit8de7378919a5dd528eab5c8308d874366d4a1bcc (patch)
tree87d365e225240b25479f5ba6d48d455baee8e2d5 /GNUmakefile-cross
parent5f3c1b8cb9fb6a9d964ea09b85f04bcc6f3d028e (diff)
downloadcryptopp-git-8de7378919a5dd528eab5c8308d874366d4a1bcc.tar.gz
Guard IS_ARMv8 for stray IS_ARM32
Diffstat (limited to 'GNUmakefile-cross')
-rwxr-xr-xGNUmakefile-cross4
1 files changed, 4 insertions, 0 deletions
diff --git a/GNUmakefile-cross b/GNUmakefile-cross
index 916af004..28e6064a 100755
--- a/GNUmakefile-cross
+++ b/GNUmakefile-cross
@@ -171,6 +171,10 @@ else
IS_ARMV8 := $(shell echo $(HOSTX) | $(GREP) -i -c -E 'aarch32|aarch64|arm64|armv8')
endif
+ifeq ($(IS_ARMV8),1)
+ IS_ARM32 = 0
+endif
+
$(info Here's what we found... IS_X86: $(IS_X86), IS_X64: $(IS_X64), IS_ARM32: $(IS_ARM32), IS_ARMV8: $(IS_ARMV8))
###########################################################