Skip to content

Commit

Permalink
Update cmake-single-platform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie-Cui authored Oct 31, 2024
1 parent 06d3bfd commit 71b7150
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,18 @@ jobs:
- name: Configure System
run: |
gcc --version
# Show system path
echo $PATH
# see: https://askubuntu.com/a/1375621
echo $LIBRARY_PATH
export $LIBRARY_PATH=$LIBRARY_PATH:/usr/lib/x86_64-linux-gnu/
echo $LIBRARY_PATH
# show ld search path
ld --verbose | grep SEARCH_DIR | tr -s ' ;' \\012
# See: https://askubuntu.com/a/1375621
sudo ln -s /usr/lib/x86_64-linux-gnu/libpthread.so.0 /usr/lib/x86_64-linux-gnu/libpthread.so
- name: Configure CMake
Expand Down

0 comments on commit 71b7150

Please sign in to comment.