Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 2ec196b

Browse files
committed
Merge pull request #1 from runrev/js-gyp_things
First set of Gyp changes to clean up emscripten builds
2 parents 869e925 + 2f31501 commit 2ec196b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

thirdparty

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)