diff options
Diffstat (limited to 'scripts/deploy/cbindgen.sh')
| -rwxr-xr-x | scripts/deploy/cbindgen.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/deploy/cbindgen.sh b/scripts/deploy/cbindgen.sh new file mode 100755 index 0000000..2be2328 --- /dev/null +++ b/scripts/deploy/cbindgen.sh @@ -0,0 +1,16 @@ +#!/bin/bash +cd "$(dirname "$(readlink -f "$0")")/../.." + +if ! command -v cbindgen &> /dev/null; then + cargo install cbindgen +fi + +rm ffi/.temp/jvlib.h +RUSTUP_TOOLCHAIN=nightly \ +cbindgen \ + --config cbindgen.toml \ + ffi \ + --output ffi/.temp/jvlib.h \ + --quiet + +cd - |
