Rebuild waterboxhost on Debian 10
Also fix the build scripts to explicitly use nightly (which waterboxhost does need currently)
This commit is contained in:
parent
6e5de797d2
commit
4ad33b3d06
Binary file not shown.
|
@ -1,3 +1,3 @@
|
|||
@cargo b --features "no-dirty-detection"
|
||||
@cargo +nightly b --features "no-dirty-detection"
|
||||
@copy target\debug\waterboxhost.dll ..\..\Assets\dll
|
||||
@copy target\debug\waterboxhost.dll ..\..\output\dll
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dirname "$0")/../..")"; fi
|
||||
|
||||
cargo b --features "no-dirty-detection"
|
||||
cargo +nightly b --features "no-dirty-detection"
|
||||
|
||||
cp target/debug/libwaterboxhost.so "$BIZHAWKBUILD_HOME/Assets/dll"
|
||||
if [ -e "$BIZHAWKBUILD_HOME/output" ]; then
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
@cargo b
|
||||
@cargo +nightly b
|
||||
@copy target\debug\waterboxhost.dll ..\..\Assets\dll
|
||||
@copy target\debug\waterboxhost.dll ..\..\output\dll
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dirname "$0")/../..")"; fi
|
||||
|
||||
cargo b
|
||||
cargo +nightly b
|
||||
|
||||
cp target/debug/libwaterboxhost.so "$BIZHAWKBUILD_HOME/Assets/dll"
|
||||
if [ -e "$BIZHAWKBUILD_HOME/output" ]; then
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dirname "$0")/../..")"; fi
|
||||
|
||||
cargo b --release
|
||||
cargo +nightly b --release
|
||||
|
||||
cp target/release/libwaterboxhost.so "$BIZHAWKBUILD_HOME/Assets/dll"
|
||||
if [ -e "$BIZHAWKBUILD_HOME/output" ]; then
|
||||
|
|
Loading…
Reference in New Issue