From 337d1c88c8a78500c5098a2458a017e68dcffe37 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 1 May 2019 11:00:34 -0400 Subject: [PATCH] Use armv7l for machine of Clang triplet armv8l-unknown-linux-gnueabihf (GH #831) Autotools uses armv7l. We should be safe using the same machine. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 8cc74810..4c84f701 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -41,7 +41,7 @@ HOSTX := $(shell $(CXX) $(CXXFLAGS) -dumpmachine 2>/dev/null | cut -f 1 -d '-') # Yet another Clang hack. I think the LLVM devs are making the shit up # as they go. Also see https://github.com/weidai11/cryptopp/issues/831. ifeq ($(HOSTX),armv8l-unknown-linux-gnueabihf) - HOSTX := arm-unknown-linux-gnueabihf + HOSTX := armv7l-unknown-linux-gnueabihf endif # Fallback ifeq ($(HOSTX),)