aboutsummaryrefslogtreecommitdiff
path: root/get_libwallet_api.sh
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-12-21 09:26:32 +0200
committerRiccardo Spagni <ric@spagni.net>2016-12-21 09:26:32 +0200
commitbbbffd58f469397095bdf0ddee6439b55ffb2dcf (patch)
treeefea8a3f5e732cdc596229f6c45895aea54380ec /get_libwallet_api.sh
parent88a5e3f1ab18d84a1960cd4d5aed7fb0259525a4 (diff)
parent2788b8a7763b0a1b02807eddb2af8b0e6a73d807 (diff)
downloadmonzero-gui-bbbffd58f469397095bdf0ddee6439b55ffb2dcf.tar.gz
monzero-gui-bbbffd58f469397095bdf0ddee6439b55ffb2dcf.tar.xz
monzero-gui-bbbffd58f469397095bdf0ddee6439b55ffb2dcf.zip
Merge pull request #318
2788b8a Fix libwallet arm7 build (Jaquee)
Diffstat (limited to 'get_libwallet_api.sh')
-rwxr-xr-xget_libwallet_api.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh
index 5de993d8..534d92c9 100755
--- a/get_libwallet_api.sh
+++ b/get_libwallet_api.sh
@@ -52,12 +52,15 @@ if [ "$platform" == "darwin" ]; then
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" ../..
elif [ "$platform" == "linux64" ]; then
# Do something under GNU/Linux platform
- echo "Configuring build for Linux.."
+ echo "Configuring build for Linux x64"
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D ARCH="x86-64" -D BUILD_64=ON -D BUILD_GUI_DEPS=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" ../..
elif [ "$platform" == "linux32" ]; then
# Do something under GNU/Linux platform
- echo "Configuring build for Linux.."
+ echo "Configuring build for Linux i686"
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D ARCH="i686" -D BUILD_64=OFF -D BUILD_GUI_DEPS=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" ../..
+elif [ "$platform" == "linux" ]; then
+ echo "Configuring build for Linux general"
+ cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D BUILD_GUI_DEPS=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" ../..
elif [ "$platform" == "mingw64" ]; then
# Do something under Windows NT platform
echo "Configuring build for MINGW64.."