-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild_all.sh
executable file
·80 lines (71 loc) · 2.45 KB
/
build_all.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
if [ ! -f "build_all.sh" ] ; then
echo "build_all.sh must be called from project root"
exit 1
fi
function usage {
echo "Usage:"
echo " $0 --parallel=0"
echo " $0 --parallel=1"
exit 1
}
if [ $# != 1 ] ; then
usage
fi
pids=()
if [ "$1" == "--parallel=0" ] ; then
function build {
./build_helper.sh "$@"
echo "<li><a href="$1/hello.html">$1</a></h1>" >> index.html
}
function cleanup {
true
}
elif [ "$1" == "--parallel=1" ] ; then
function build {
./build_helper.sh "$@" & pids+=($!)
echo "<li><a href="$1/hello.html">$1</a></li>" >> index.html
}
function cleanup {
wait "${pids[@]}"
}
function stop {
kill "${pids[@]}"
cleanup
exit 1
}
trap stop SIGHUP SIGINT SIGTERM
else
usage
fi
set -euo pipefail
cat > index.html <<EOF
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>webgpu-cross-platform-demo</title>
</head>
<body>
<ul>
EOF
for buildtype in Debug Release ; do
# TODO make asyncify=0 work
for asyncify in 1 2 ; do
for sanitizers in ON OFF ; do
if [ $sanitizers == ON ] ; then
sanitizers_label32=-ubsan-asan
sanitizers_label64=-ubsan
else
sanitizers_label32=
sanitizers_label64=
fi
build out/web-${buildtype:0:3}-asyncify${asyncify}${sanitizers_label32} -DDEMO_USE_ASYNCIFY=$asyncify -DCMAKE_BUILD_TYPE=$buildtype -DDEMO_USE_SANITIZERS=$sanitizers
build out/web-${buildtype:0:3}-asyncify${asyncify}-bigint${sanitizers_label32} -DDEMO_USE_ASYNCIFY=$asyncify -DCMAKE_BUILD_TYPE=$buildtype -DDEMO_USE_SANITIZERS=$sanitizers -DDEMO_USE_WASM_BIGINT=ON
build out/web-${buildtype:0:3}-asyncify${asyncify}-4gb${sanitizers_label32} -DDEMO_USE_ASYNCIFY=$asyncify -DCMAKE_BUILD_TYPE=$buildtype -DDEMO_USE_SANITIZERS=$sanitizers -DDEMO_USE_WASM_4GB=ON
build out/web-${buildtype:0:3}-asyncify${asyncify}-4gb-bigint${sanitizers_label32} -DDEMO_USE_ASYNCIFY=$asyncify -DCMAKE_BUILD_TYPE=$buildtype -DDEMO_USE_SANITIZERS=$sanitizers -DDEMO_USE_WASM_4GB=ON -DDEMO_USE_WASM_BIGINT=ON
build out/web-${buildtype:0:3}-asyncify${asyncify}-memory64${sanitizers_label64} -DDEMO_USE_ASYNCIFY=$asyncify -DCMAKE_BUILD_TYPE=$buildtype -DDEMO_USE_SANITIZERS=$sanitizers -DDEMO_USE_WASM_MEMORY64=ON
done
done
done
cleanup