mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +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
|
||||
|
||||
# Copy monerod to bin folder
|
||||
if [ "$platform" != "mingw32" ]; then
|
||||
cp ../$MONERO_DIR/bin/$MONEROD_EXEC $BIN_PATH
|
||||
fi
|
||||
|
||||
# make deploy
|
||||
popd
|
||||
|
|
|
@ -78,10 +78,14 @@ 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
|
||||
# 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
|
||||
|
||||
|
||||
# unbound is one more dependency. can't be merged to the wallet_merged
|
||||
# since filename conflict (random.c.obj)
|
||||
|
|
Loading…
Reference in a new issue