Skip to content

Commit 8d857e5

Browse files
committed
ci: switch to using native objdump in verify-glibc script
1 parent 9211e36 commit 8d857e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/linux/verify-glibc-requirements.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ for file in $files; do
2424
glibcxx_version=$version
2525
fi
2626
fi
27-
done < <("$SYSROOT_PATH/../bin/objdump" -T "$file")
27+
done < <(objdump -T "$file")
2828

2929
if [[ "$glibc_version" != "$EXPECTED_GLIBC_VERSION" ]]; then
3030
echo "Error: File $file has dependency on GLIBC > $EXPECTED_GLIBC_VERSION, found $glibc_version"

0 commit comments

Comments
 (0)