Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
lkl: fix zpoline runtime issue missing libgcc_s.so
Some of tests failed on zpoline build with random places, which are not
always reproducible.  All of them we found shows the message below,
which this commit adds the package to silence them.

 libgcc_s.so.1 must be installed for pthread_exit to work

Signed-off-by: Hajime Tazaki <thehajime@gmail.com>
  • Loading branch information
thehajime committed Mar 3, 2025
commit b7889946bf60d587b429e4b4fff27b4aac353704
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
- name: install zpoline
if: matrix.displayTargetName == 'zpoline'
run: |
sudo apt install -y binutils-dev
sudo apt install -y binutils-dev lib32gcc-s1
git clone https://github.com/yasukata/zpoline
cd zpoline
git checkout 022a3b8c7a5c23bfd99162b478bf3eb5f70c07a2
Expand Down
Loading