Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4242372

Browse files
committedMar 27, 2024
Try to fix i686-pc-windows-gnu
1 parent ce105a4 commit 4242372

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
shell: bash
9898

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

‎ci/run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ esac
4545
NM=$(find $(rustc --print sysroot) \( -name llvm-nm -o -name llvm-nm.exe \) )
4646
if [ "$NM" = "" ]; then
4747
NM=${PREFIX}nm
48+
elif [ -n "$2" ]; then
49+
NM="rustup run $2 $NM"
Code has comments. Press enter to view.
4850
fi
4951

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

0 commit comments

Comments
 (0)
Please sign in to comment.