File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed
Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1+ # iOS standalone engine do not build anymore in Debug mode
Original file line number Diff line number Diff line change @@ -52,21 +52,23 @@ for input in $@ ; do
5252 real_input=" ${input} "
5353 fi
5454
55- # Extract a copy of the debugging information
56- echo Extracting debug symbols for ${input}
57- dsymutil --out " ${output} " " ${real_input} "
5855
59- # Strip the executable
60- $STRIP -x -S " $real_input "
56+ # If the OS is iOS and this is a debug build, do nothing
57+ if [ " $os " == " ios" -a " $BUILDTYPE " == " Debug" ] ; then
58+ echo Creating empty debug symbols file for ${input}
59+ touch " ${output} "
60+ else
61+ # Extract a copy of the debugging information
62+ echo Extracting debug symbols for ${input}
63+ dsymutil --out " ${output} " " ${real_input} "
64+
65+ # Strip the executable
66+ $STRIP -x -S " $real_input "
67+ fi
6168done
6269
6370}
6471
65- # If the OS is iOS and this is a debug build, do nothing
66- if [ " $os " == " ios" -a " $BUILDTYPE " == " Debug" ] ; then
67- exit 0
68- fi
69-
7072case $os in
7173 linux|android)
7274 extract_linux_or_android ${inputs}
You can’t perform that action at this time.
0 commit comments