aboutsummaryrefslogtreecommitdiff
path: root/get_libwallet_api.sh
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2016-12-09 09:42:12 +0100
committerJaquee <jaquee.monero@gmail.com>2016-12-09 09:42:12 +0100
commit5437820af0f4e04563b158f6f1e982479ae8a333 (patch)
treefdfbb3e15aa11e0be239816e31039ae03b0a068b /get_libwallet_api.sh
parentff998ba17b21e7484048d59bf22271b4415a4f21 (diff)
downloadmonzero-gui-5437820af0f4e04563b158f6f1e982479ae8a333.tar.gz
monzero-gui-5437820af0f4e04563b158f6f1e982479ae8a333.tar.xz
monzero-gui-5437820af0f4e04563b158f6f1e982479ae8a333.zip
build and install monerod
Diffstat (limited to 'get_libwallet_api.sh')
-rwxr-xr-xget_libwallet_api.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh
index 9f69cade..6926d977 100755
--- a/get_libwallet_api.sh
+++ b/get_libwallet_api.sh
@@ -36,6 +36,8 @@ echo "cleaning up existing monero build dir, libs and includes"
rm -fr $MONERO_DIR/build
rm -fr $MONERO_DIR/lib
rm -fr $MONERO_DIR/include
+rm -fr $MONERO_DIR/bin
+
mkdir -p $MONERO_DIR/build/release
pushd $MONERO_DIR/build/release
@@ -68,12 +70,19 @@ else
fi
+# Build libwallet_merged
pushd $MONERO_DIR/build/release/src/wallet
eval $make_exec version -C ../..
eval $make_exec -j$CPU_CORE_COUNT
eval $make_exec install -j$CPU_CORE_COUNT
popd
+# Build monerod
+pushd $MONERO_DIR/build/release/src/daemon
+eval $make_exec -j$CPU_CORE_COUNT
+eval $make_exec install -j$CPU_CORE_COUNT
+popd
+
# unbound is one more dependency. can't be merged to the wallet_merged
# since filename conflict (random.c.obj)
# for Linux, we use libunbound shipped with the system, so we don't need to build it