diff --git a/Assets/dll/libwaterboxhost.so b/Assets/dll/libwaterboxhost.so index a2d46e7f2f..f87c4b4e9c 100644 Binary files a/Assets/dll/libwaterboxhost.so and b/Assets/dll/libwaterboxhost.so differ diff --git a/waterbox/waterboxhost/build-debug-no-dirty-detection.bat b/waterbox/waterboxhost/build-debug-no-dirty-detection.bat index f385b0af1d..d0ee8c8960 100644 --- a/waterbox/waterboxhost/build-debug-no-dirty-detection.bat +++ b/waterbox/waterboxhost/build-debug-no-dirty-detection.bat @@ -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 diff --git a/waterbox/waterboxhost/build-debug-no-dirty-detection.sh b/waterbox/waterboxhost/build-debug-no-dirty-detection.sh old mode 100644 new mode 100755 index a88ce44d7e..cb187a383f --- a/waterbox/waterboxhost/build-debug-no-dirty-detection.sh +++ b/waterbox/waterboxhost/build-debug-no-dirty-detection.sh @@ -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 diff --git a/waterbox/waterboxhost/build-debug.bat b/waterbox/waterboxhost/build-debug.bat index 02e2fc82f3..13d1c52f74 100644 --- a/waterbox/waterboxhost/build-debug.bat +++ b/waterbox/waterboxhost/build-debug.bat @@ -1,3 +1,3 @@ -@cargo b +@cargo +nightly b @copy target\debug\waterboxhost.dll ..\..\Assets\dll @copy target\debug\waterboxhost.dll ..\..\output\dll diff --git a/waterbox/waterboxhost/build-debug.sh b/waterbox/waterboxhost/build-debug.sh old mode 100644 new mode 100755 index 4db6d725ab..44ac1b13ff --- a/waterbox/waterboxhost/build-debug.sh +++ b/waterbox/waterboxhost/build-debug.sh @@ -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 diff --git a/waterbox/waterboxhost/build-release.sh b/waterbox/waterboxhost/build-release.sh old mode 100644 new mode 100755 index 7940facc97..9a83d8b218 --- a/waterbox/waterboxhost/build-release.sh +++ b/waterbox/waterboxhost/build-release.sh @@ -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