Skip to content

Commit 62258b5

Browse files
author
Jorge Aparicio
committed
ignore duplicated get_pc_thunk symbols
1 parent b5797dc commit 62258b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/run.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ case $TRAVIS_OS_NAME in
5555
;;
5656
esac
5757

58+
# NOTE On i586, It's normal that the get_pc_thunk symbol appears several times so ignore it
5859
$PREFIX$NM -g --defined-only /tmp/target/${1}/debug/librustc_builtins.rlib | \
59-
sort | uniq -d | grep 'T __'
60+
sort | uniq -d | grep -v __x86.get_pc_thunk | grep 'T __'
6061

6162
if test $? = 0; then
6263
exit 1

0 commit comments

Comments
 (0)