aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2016-08-28 05:35:27 -0400
committerredfish <redfish@galactica.pw>2016-08-28 05:35:27 -0400
commit57ca3f3f64ebfcd83af899cbff58e683198152a0 (patch)
treee9df8dfa5ae07c2efeb07c09129d8bd0415ac330
parentreadme: editted install/build instructions for clarity (diff)
downloadmonero-57ca3f3f64ebfcd83af899cbff58e683198152a0.tar.xz
make: make the ARM release targets statically linked
I think, in this context, dynamically linked builds make sense only for native builds, not these builds that target arch families to produce portable binaries.
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b02f92ad5..d1dea23a3 100644
--- a/Makefile
+++ b/Makefile
@@ -58,13 +58,13 @@ release-all:
mkdir -p build/release
cd build/release && cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
-release-arm6:
+release-static-arm6:
mkdir -p build/release
- cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv6zk" -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 NO_AES=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
-release-arm7:
+release-static-arm7:
mkdir -p build/release
- cd build/release && cmake -D BUILD_TESTS=OFF -D ARCH="armv7-a" -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 NO_AES=ON -D CMAKE_BUILD_TYPE=release ../.. && $(MAKE)
release-static: release-static-64