From 62258b5188e6f993f1f746fb616238309884dff3 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 29 Sep 2016 19:20:34 -0500 Subject: [PATCH] ignore duplicated get_pc_thunk symbols --- ci/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/run.sh b/ci/run.sh index 866ddc2..237c505 100644 --- a/ci/run.sh +++ b/ci/run.sh @@ -55,8 +55,9 @@ case $TRAVIS_OS_NAME in ;; esac +# NOTE On i586, It's normal that the get_pc_thunk symbol appears several times so ignore it $PREFIX$NM -g --defined-only /tmp/target/${1}/debug/librustc_builtins.rlib | \ - sort | uniq -d | grep 'T __' + sort | uniq -d | grep -v __x86.get_pc_thunk | grep 'T __' if test $? = 0; then exit 1