Projects STRLCPY got-your-back Commits 6865f7c5
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    .github/workflows/build.yml
    skipped 358 lines
    359 359   - name: Linux Make Static GYB
    360 360   if: runner.os == 'Linux' && matrix.goal != 'test'
    361 361   run: |
    362  - $PYTHON -m staticx gyb/gyb gyb/gyb-staticx
     362 + case $RUNNER_ARCH in
     363 + X64)
     364 + ldlib=/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
     365 + ;;
     366 + ARM64)
     367 + ldlib=/lib/aarch64-linux-gnu/ld-linux-aarch64.so.1
     368 + ;;
     369 + esac
     370 + echo "ldlib=${ldlib}"
     371 + $PYTHON -m staticx -l "${ldlib}" gyb/gyb gyb/gyb-staticx
    363 372  
    364 373   - name: Linux Run StaticX-ed GYB
    365 374   if: runner.os == 'Linux' && matrix.goal != 'test'
    skipped 108 lines
Please wait...
Page is in error, reload to recover