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