monero-gui/get_libwallet_api.sh

109 lines
3.8 KiB
Bash
Raw Normal View History

2016-05-17 15:03:59 +02:00
#!/bin/bash
2016-10-09 20:49:56 +02:00
MONERO_URL=https://github.com/monero-project/monero.git
MONERO_BRANCH=master
# MONERO_URL=https://github.com/mbg033/monero.git
# MONERO_BRANCH=develop
# Buidling "debug" build optionally
BUILD_TYPE=$1
if [ -z $BUILD_TYPE ]; then
BUILD_TYPE=Release
fi
2016-07-06 15:24:14 +02:00
# thanks to SO: http://stackoverflow.com/a/20283965/4118915
if test -z "$CPU_CORE_COUNT"; then
CPU_CORE_COUNT=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || sysctl -n hw.ncpu)
fi
2016-05-17 15:03:59 +02:00
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $ROOT_DIR/utils.sh
2016-05-17 15:03:59 +02:00
INSTALL_DIR=$ROOT_DIR/wallet
MONERO_DIR=$ROOT_DIR/monero
2016-05-17 15:03:59 +02:00
if [ ! -d $MONERO_DIR ]; then
git clone --depth=1 $MONERO_URL $MONERO_DIR --branch $MONERO_BRANCH --single-branch
else
cd $MONERO_DIR;
git checkout $MONERO_BRANCH
git pull;
2016-05-17 15:03:59 +02:00
fi
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
2016-12-09 09:42:12 +01:00
rm -fr $MONERO_DIR/bin
mkdir -p $MONERO_DIR/build/release
pushd $MONERO_DIR/build/release
2016-05-17 15:03:59 +02:00
# reusing function from "utils.sh"
platform=$(get_platform)
2016-11-23 22:30:36 +01:00
# default make executable
make_exec="make"
if [ "$platform" == "darwin" ]; then
2016-07-01 14:02:19 +02:00
# Do something under Mac OS X platform
echo "Configuring build for MacOS.."
2016-12-15 23:08:26 +01:00
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" ../..
2016-12-15 14:56:33 +01:00
elif [ "$platform" == "linux64" ]; then
2016-07-01 14:02:19 +02:00
# Do something under GNU/Linux platform
echo "Configuring build for Linux.."
2016-12-15 14:56:33 +01:00
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.."
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" == "mingw64" ]; then
2016-07-01 14:02:19 +02:00
# Do something under Windows NT platform
echo "Configuring build for MINGW64.."
2016-12-18 14:07:02 +01:00
BOOST_ROOT=/mingw64/boost
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D BOOST_ROOT="$BOOST_ROOT" -D ARCH="x86-64" -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" -G "MSYS Makefiles" ../..
elif [ "$platform" == "mingw32" ]; then
2016-07-01 14:02:19 +02:00
# Do something under Windows NT platform
echo "Configuring build for MINGW32.."
2016-12-18 14:07:02 +01:00
BOOST_ROOT=/mingw32/boost
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D Boost_DEBUG=ON -D BOOST_ROOT="$BOOST_ROOT" -D ARCH="i686" -D BUILD_64=OFF -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" -G "MSYS Makefiles" ../..
2016-11-23 22:30:36 +01:00
make_exec="mingw32-make"
else
echo "Unsupported platform: $platform"
popd
exit 1
2016-07-01 14:02:19 +02:00
fi
2016-05-17 15:03:59 +02:00
2016-12-09 09:42:12 +01:00
# Build libwallet_merged
pushd $MONERO_DIR/build/release/src/wallet
2016-11-23 22:30:36 +01:00
eval $make_exec version -C ../..
eval $make_exec -j$CPU_CORE_COUNT
eval $make_exec install -j$CPU_CORE_COUNT
2016-05-17 15:03:59 +02:00
popd
2016-09-03 12:06:44 +02:00
2016-12-09 09:42:12 +01:00
# Build monerod
# win32 need to build daemon manually with msys2 toolchain
if [ "$platform" != "mingw32" ]; then
pushd $MONERO_DIR/build/release/src/daemon
eval make -j$CPU_CORE_COUNT
eval make install -j$CPU_CORE_COUNT
popd
fi
2016-12-09 09:42:12 +01:00
2016-09-03 12:06:44 +02:00
# unbound is one more dependency. can't be merged to the wallet_merged
# since filename conflict (random.c.obj)
2016-09-19 16:55:34 +02:00
# for Linux, we use libunbound shipped with the system, so we don't need to build it
2016-12-15 18:01:06 +01:00
if [ "$platform" != "linux32" ] && [ "$platform" != "linux64" ]; then
echo "Building libunbound..."
pushd $MONERO_DIR/build/release/external/unbound
# no need to make, it was already built as dependency for libwallet
# make -j$CPU_CORE_COUNT
2016-12-04 20:03:24 +01:00
$make_exec install -j$CPU_CORE_COUNT
popd
fi
2016-09-03 12:06:44 +02:00
2016-11-23 22:30:36 +01:00
popd