This commit is contained in:
Serhii Snitsaruk 2024-12-18 01:15:52 +01:00
parent 4d193c53ce
commit 1d2a8bcf96
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 4 additions and 3 deletions

View File

@ -274,6 +274,7 @@ jobs:
if: matrix.opts.platform == 'web'
run: |
emcc -v
llvm-objcopy --help
- name: Set up scons
if: matrix.opts.platform != 'linux'
@ -360,9 +361,9 @@ jobs:
if: inputs.debug-symbols && matrix.opts.platform == 'web'
shell: bash
run: |
ls -R emsdk-cache/
echo "---"
echo ${PATH}
emstrip --only-keep-debug -o ${{matrix.opts.bin}}.debug ${{matrix.opts.bin}}
emstrip --strip-debug ${{matrix.opts.bin}}
llvm-objcopy --add-gnu-debuglink ${{matrix.opts.bin}}.debug ${{matrix.opts.bin}}
- name: Split debug symbols (Android)
if: inputs.debug-symbols && matrix.opts.platform == 'android'