diff options
author | Jeffrey Walton <noloader@gmail.com> | 2019-05-01 11:00:34 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2019-05-01 11:00:34 -0400 |
commit | 337d1c88c8a78500c5098a2458a017e68dcffe37 (patch) | |
tree | 7dae3f9e2e71fcf7aff5a19d5d347dcb3f66554b /GNUmakefile | |
parent | a5fe6fa6dad6ea718a599e86b42d45fde5d9360e (diff) | |
download | cryptopp-git-337d1c88c8a78500c5098a2458a017e68dcffe37.tar.gz |
Use armv7l for machine of Clang triplet armv8l-unknown-linux-gnueabihf (GH #831)
Autotools uses armv7l. We should be safe using the same machine.
Diffstat (limited to 'GNUmakefile')
-rwxr-xr-x | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
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),) |