mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
use mingw32-make on win 32 build
This commit is contained in:
parent
c83336cc47
commit
ba1bceb4e0
1 changed files with 7 additions and 6 deletions
|
@ -42,7 +42,8 @@ pushd $MONERO_DIR/build/release
|
||||||
|
|
||||||
# reusing function from "utils.sh"
|
# reusing function from "utils.sh"
|
||||||
platform=$(get_platform)
|
platform=$(get_platform)
|
||||||
|
# default make executable
|
||||||
|
make_exec="make"
|
||||||
if [ "$platform" == "darwin" ]; then
|
if [ "$platform" == "darwin" ]; then
|
||||||
# Do something under Mac OS X platform
|
# Do something under Mac OS X platform
|
||||||
echo "Configuring build for MacOS.."
|
echo "Configuring build for MacOS.."
|
||||||
|
@ -59,6 +60,7 @@ elif [ "$platform" == "mingw32" ]; then
|
||||||
# Do something under Windows NT platform
|
# Do something under Windows NT platform
|
||||||
echo "Configuring build for MINGW32.."
|
echo "Configuring build for MINGW32.."
|
||||||
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" -G "MSYS Makefiles" ../..
|
cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D STATIC=ON -D BUILD_GUI_DEPS=ON -D INSTALL_VENDORED_LIBUNBOUND=ON -D CMAKE_INSTALL_PREFIX="$MONERO_DIR" -G "MSYS Makefiles" ../..
|
||||||
|
make_exec="mingw32-make"
|
||||||
else
|
else
|
||||||
echo "Unsupported platform: $platform"
|
echo "Unsupported platform: $platform"
|
||||||
popd
|
popd
|
||||||
|
@ -67,9 +69,9 @@ fi
|
||||||
|
|
||||||
|
|
||||||
pushd $MONERO_DIR/build/release/src/wallet
|
pushd $MONERO_DIR/build/release/src/wallet
|
||||||
make version -C ../..
|
eval $make_exec version -C ../..
|
||||||
make -j$CPU_CORE_COUNT
|
eval $make_exec -j$CPU_CORE_COUNT
|
||||||
make install -j$CPU_CORE_COUNT
|
eval $make_exec install -j$CPU_CORE_COUNT
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# unbound is one more dependency. can't be merged to the wallet_merged
|
# unbound is one more dependency. can't be merged to the wallet_merged
|
||||||
|
@ -86,4 +88,3 @@ if [ "$platform" != "linux" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue