-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathbuild-rust.sh
executable file
·50 lines (40 loc) · 1.11 KB
/
build-rust.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
help()
{
printf "Usage: %s: [-d 2|3] [-f deterministim|non-deterministic|simd]\n" $0
}
while getopts :d:f: name
do
case $name in
d)
dimension="$OPTARG";;
f)
feature="$OPTARG";;
?) help ; exit 1;;
esac
done
if [[ -z "$dimension" ]]; then
help; exit 2;
fi
if [[ -z "$feature" ]]; then
help; exit 3;
fi
if [[ $feature == "non-deterministic" ]]; then
feature_postfix=""
else
feature_postfix="-${feature}"
fi
rust_source_directory="../builds/rapier${dimension}d${feature_postfix}"
if [ ! -d "$rust_source_directory" ]; then
echo "Directory $rust_source_directory does not exist";
echo "You may want to generate rust projects first.";
help
exit 4;
fi
# Working dir in wasm-pack is the project root so we need that "../../"
if [[ $feature == "simd" ]]; then
export additional_rustflags='-C target-feature=+simd128'
else
export additional_rustflags=''
fi
RUSTFLAGS="${additional_rustflags}" wasm-pack --verbose build --target web --out-dir "../../rapier-compat/builds/${dimension}d${feature_postfix}/wasm-build" "$rust_source_directory"