mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 21:04:32 +00:00
Don't build monerod on win32
Signed-off-by: Jaquee <jaquee.monero@gmail.com>
This commit is contained in:
parent
5437820af0
commit
401d09fab7
2 changed files with 10 additions and 4 deletions
2
build.sh
2
build.sh
|
@ -48,7 +48,9 @@ qmake ../monero-core.pro "$CONFIG"
|
||||||
make
|
make
|
||||||
|
|
||||||
# Copy monerod to bin folder
|
# Copy monerod to bin folder
|
||||||
|
if [ "$platform" != "mingw32" ]; then
|
||||||
cp ../$MONERO_DIR/bin/$MONEROD_EXEC $BIN_PATH
|
cp ../$MONERO_DIR/bin/$MONEROD_EXEC $BIN_PATH
|
||||||
|
fi
|
||||||
|
|
||||||
# make deploy
|
# make deploy
|
||||||
popd
|
popd
|
||||||
|
|
|
@ -78,10 +78,14 @@ eval $make_exec install -j$CPU_CORE_COUNT
|
||||||
popd
|
popd
|
||||||
|
|
||||||
# Build monerod
|
# Build monerod
|
||||||
pushd $MONERO_DIR/build/release/src/daemon
|
# win32 need to build daemon manually with msys2 toolchain
|
||||||
eval $make_exec -j$CPU_CORE_COUNT
|
if [ "$platform" != "mingw32" ]; then
|
||||||
eval $make_exec install -j$CPU_CORE_COUNT
|
pushd $MONERO_DIR/build/release/src/daemon
|
||||||
popd
|
eval make -j$CPU_CORE_COUNT
|
||||||
|
eval make install -j$CPU_CORE_COUNT
|
||||||
|
popd
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# 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
|
||||||
# since filename conflict (random.c.obj)
|
# since filename conflict (random.c.obj)
|
||||||
|
|
Loading…
Reference in a new issue