From 54ba3adf05accafdb767093f6961eee77f6ec98a Mon Sep 17 00:00:00 2001 From: Daniel Paoliello Date: Wed, 27 Mar 2024 13:23:36 -0700 Subject: [PATCH] Try to fix i686-pc-windows-gnu --- ci/run.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/run.sh b/ci/run.sh index 935c08c8..9a64c15f 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -45,6 +45,9 @@ esac NM=$(find $(rustc --print sysroot) \( -name llvm-nm -o -name llvm-nm.exe \) ) if [ "$NM" = "" ]; then NM=${PREFIX}nm +else + default_toolchain=$(rustup default | cut -d ' ' -f 1) + NM=rustup run $default_toolchain $NM fi # Look out for duplicated symbols when we include the compiler-rt (C) implementation