We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce105a4 commit 36b3fbdCopy full SHA for 36b3fbd
ci/run.sh
@@ -42,9 +42,12 @@ case $1 in
42
;;
43
esac
44
45
-NM=$(find $(rustc --print sysroot) \( -name llvm-nm -o -name llvm-nm.exe \) )
+rustc_sysroot=$(rustc --print sysroot)
46
+NM=$(find $rustc_sysroot \( -name llvm-nm -o -name llvm-nm.exe \) )
47
if [ "$NM" = "" ]; then
48
NM=${PREFIX}nm
49
+else
50
+ PATH=$rustc_sysroot/bin:$PATH
51
fi
52
53
# Look out for duplicated symbols when we include the compiler-rt (C) implementation
0 commit comments