From bdebe53dd6ecc047ee06eb8a94085da61e83d4c2 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 9 Dec 2015 00:41:15 -0500 Subject: [PATCH] Updated to recognize arm64-v8a as an architecture --- GNUmakefile-cross | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GNUmakefile-cross b/GNUmakefile-cross index bff9eef8..468892eb 100755 --- a/GNUmakefile-cross +++ b/GNUmakefile-cross @@ -113,14 +113,17 @@ distclean: clean .PHONY: install install: - $(MKDIR) -p $(PREFIX)/include/cryptopp $(PREFIX)/lib $(PREFIX)/bin + $(MKDIR) -p $(PREFIX)/include/cryptopp $(PREFIX)/lib -$(CP) *.h $(PREFIX)/include/cryptopp -$(CHMOD) 755 $(PREFIX)/include/cryptopp -$(CHMOD) 644 $(PREFIX)/include/cryptopp/*.h -$(CP) libcryptopp.a $(PREFIX)/lib -$(CHMOD) 644 $(PREFIX)/lib/libcryptopp.a +ifeq ($(wildcard cryptest.exe),cryptest.exe) + $(MKDIR) -p $(PREFIX)/bin -$(CP) cryptest.exe $(PREFIX)/bin -$(CHMOD) 755 $(PREFIX)/bin/cryptest.exe +endif ifneq ($(IS_IOS),0) -$(CP) libcryptopp.dylib $(PREFIX)/lib -$(CHMOD) 755 $(PREFIX)/lib/libcryptopp.dylib