Skip to content

Commit ee05eb4

Browse files
author
Jorge Aparicio
committed
we are OK with repeated get_pc_thunk symbols
those are not compiler-rt intrinsics
1 parent c5d28df commit ee05eb4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/script.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ c_test() {
3939

4040
set +e
4141
# verify that we don't have duplicated symbols when we include symbols from compiler-rt
42-
$PREFIX$NM --defined-only target/$TARGET/debug/librustc_builtins.rlib | sort | uniq -d | grep 'T __'
42+
$PREFIX$NM --defined-only target/$TARGET/debug/librustc_builtins.rlib | \
43+
sort | uniq -d | grep -v x86.get_pc_thunk | grep 'T __'
4344

4445
[[ $? == 0 ]] && exit 1
4546
set -e

0 commit comments

Comments
 (0)