Skip to content

Commit 8d713c9

Browse files
Add a no-op extract-debug-symbols step for emscripten
1 parent 56c2c4d commit 8d713c9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tools/extract-debug-symbols.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ done
3434

3535
}
3636

37+
function extract_emscripten {
38+
39+
for input in $@ ; do
40+
touch "${input}${suffix}"
41+
done
42+
43+
}
44+
3745
function extract_mac_or_ios {
3846

3947
for input in $@ ; do
@@ -69,6 +77,9 @@ case $os in
6977
mac|ios)
7078
extract_mac_or_ios ${inputs}
7179
;;
80+
emscripten)
81+
extract_emscripten ${inputs}
82+
;;
7283
*)
7384
echo OS "$os" not supported by this script
7485
exit 1

0 commit comments

Comments
 (0)