We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5797dc commit 62258b5Copy full SHA for 62258b5
ci/run.sh
@@ -55,8 +55,9 @@ case $TRAVIS_OS_NAME in
55
;;
56
esac
57
58
+# NOTE On i586, It's normal that the get_pc_thunk symbol appears several times so ignore it
59
$PREFIX$NM -g --defined-only /tmp/target/${1}/debug/librustc_builtins.rlib | \
- sort | uniq -d | grep 'T __'
60
+ sort | uniq -d | grep -v __x86.get_pc_thunk | grep 'T __'
61
62
if test $? = 0; then
63
exit 1
0 commit comments