We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e75fd commit eaa8a17Copy full SHA for eaa8a17
ci/run.sh
@@ -55,9 +55,14 @@ case $TRAVIS_OS_NAME in
55
;;
56
esac
57
58
-tree /target
59
# NOTE On i586, It's normal that the get_pc_thunk symbol appears several times so ignore it
60
-stdout=$($PREFIX$NM -g --defined-only /target/${1}/debug/librustc_builtins.rlib)
+if [ $TRAVIS_OS_NAME = osx ]; then
+ path=target/${1}/debug/librustc_builtins.rlib
61
+else
62
+ path=/target/${1}/debug/librustc_builtins.rlib
63
+fi
64
+
65
+stdout=$($PREFIX$NM -g --defined-only $path)
66
67
set +e
68
echo "$stdout" | sort | uniq -d | grep -v __x86.get_pc_thunk | grep 'T __'
0 commit comments