2021-09-22 14:30:52 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "No argument supplied"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-01-23 11:32:32 +08:00
|
|
|
if [ -e ../../target/release/nac3standalone ]; then
|
|
|
|
nac3standalone=../../target/release/nac3standalone
|
|
|
|
else
|
|
|
|
# used by Nix builds
|
|
|
|
nac3standalone=../../target/x86_64-unknown-linux-gnu/release/nac3standalone
|
|
|
|
fi
|
|
|
|
|
2021-09-22 15:01:14 +08:00
|
|
|
rm -f *.o
|
2022-01-23 11:32:32 +08:00
|
|
|
$nac3standalone $1
|
2022-01-23 10:35:06 +08:00
|
|
|
rustc -o demo demo.rs -Clink-arg=./module.o
|
|
|
|
./demo
|