Skip to content

Commit

Permalink
Try to fix i686-pc-windows-gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaoliello committed Mar 27, 2024
1 parent ce105a4 commit 4242372
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
shell: bash

# Non-linux tests just use our raw script
- run: ./ci/run.sh ${{ matrix.target }}
- run: ./ci/run.sh ${{ matrix.target }} ${{ matrix.rust }}
if: matrix.os != 'ubuntu-latest'
shell: bash

Expand Down
2 changes: 2 additions & 0 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ esac
NM=$(find $(rustc --print sysroot) \( -name llvm-nm -o -name llvm-nm.exe \) )
if [ "$NM" = "" ]; then
NM=${PREFIX}nm
elif [ -n "$2" ]; then
NM="rustup run $2 $NM"

This comment has been minimized.

Copy link
@RalfJung

RalfJung Mar 28, 2024

Member

Might be worth a comment saying this is needed on i686-windows-gnu to pick up some shared libraries.

fi

# Look out for duplicated symbols when we include the compiler-rt (C) implementation
Expand Down

0 comments on commit 4242372

Please sign in to comment.