80 lines
2.0 KiB
Bash
Executable File
80 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "No argument supplied"
|
|
exit 1
|
|
fi
|
|
|
|
declare -a nac3args
|
|
while [ $# -ge 1 ]; do
|
|
case "$1" in
|
|
--help)
|
|
echo "Usage: run_demo.sh [--help] [--out OUTFILE] [--debug] [-i386] -- [NAC3ARGS...]"
|
|
exit
|
|
;;
|
|
--out)
|
|
shift
|
|
outfile="$1"
|
|
;;
|
|
--debug)
|
|
debug=1
|
|
;;
|
|
-i386)
|
|
i386=1
|
|
;;
|
|
--)
|
|
shift
|
|
break
|
|
;;
|
|
*)
|
|
break
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
while [ $# -ge 1 ]; do
|
|
nac3args+=("$1")
|
|
shift
|
|
done
|
|
|
|
if [ -n "$debug" ] && [ -e ../../target/debug/nac3standalone ]; then
|
|
nac3standalone=../../target/debug/nac3standalone
|
|
linalg=../../target/debug/deps/liblinalg-?*.a
|
|
elif [ -e ../../target/release/nac3standalone ]; then
|
|
nac3standalone=../../target/release/nac3standalone
|
|
linalg=../../target/release/deps/liblinalg-?*.a
|
|
else
|
|
# used by Nix builds
|
|
nac3standalone=../../target/x86_64-unknown-linux-gnu/release/nac3standalone
|
|
linalg=../../target/x86_64-unknown-linux-gnu/release/deps/liblinalg-?*.a
|
|
fi
|
|
|
|
rm -f ./*.o ./*.bc demo
|
|
|
|
if [ -z "$i386" ]; then
|
|
$nac3standalone "${nac3args[@]}"
|
|
|
|
clang -c -std=gnu11 -Wall -Wextra -O3 -o demo.o demo.c
|
|
clang -lm -Wl,--no-warn-search-mismatch -o demo module.o demo.o $linalg
|
|
else
|
|
# Enable SSE2 to avoid rounding errors with X87's 80-bit fp precision computations
|
|
|
|
$nac3standalone --triple i386-pc-linux-gnu --target-features +sse2 "${nac3args[@]}"
|
|
|
|
# Compile linalg crate to provide functions compatible with i386 architecture
|
|
cd linalg && nix-shell -p rustup --command "RUSTFLAGS=\"-C target-cpu=i386 -C target-feature=+sse2\" cargo build -q --release --target=i686-unknown-linux-gnu" && cd ..
|
|
|
|
linalg=../../target/i686-unknown-linux-gnu/release/liblinalg.a
|
|
clang -m32 -c -std=gnu11 -Wall -Wextra -O3 -msse2 -o demo.o demo.c
|
|
clang -m32 -lm -Wl,--no-warn-search-mismatch -o demo module.o demo.o $linalg
|
|
fi
|
|
|
|
if [ -z "$outfile" ]; then
|
|
./demo
|
|
else
|
|
./demo > "$outfile"
|
|
fi
|