aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2016-08-28 05:42:06 -0400
committerredfish <redfish@galactica.pw>2016-08-28 05:42:06 -0400
commit397b720069e4c6011e20c6f9d4848c6092f002f3 (patch)
treeb068f63b6c5712018eb29cf7f69fb132c5dca3bc
parentmake: make the ARM release targets statically linked (diff)
downloadmonero-397b720069e4c6011e20c6f9d4848c6092f002f3.tar.xz
make: remove NO_AES from arm targets
cmake sets that appropriately based on the target architecture
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d1dea23a3..1b52fe2d0 100644
--- a/Makefile
+++ b/Makefile
@@ -60,11 +60,11 @@ release-all:
release-static-arm6:
mkdir -p build/release
- cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv6zk" -D STATIC=ON -D BUILD_64=OFF -D NO_AES=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
+ cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv6zk" -D STATIC=ON -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
release-static-arm7:
mkdir -p build/release
- cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv7-a" -D STATIC=ON -D BUILD_64=OFF -D NO_AES=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
+ cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv7-a" -D STATIC=ON -D BUILD_64=OFF -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
release-static: release-static-64