From 0e8bfccd792d8a050179cbf7a01b927e7974bab3 Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Mon, 18 Nov 2024 10:11:42 +0000 Subject: [PATCH] Deactivate version symbol check --- packaging/post_build_script.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packaging/post_build_script.sh b/packaging/post_build_script.sh index ca8fd1337..f77bc05f4 100755 --- a/packaging/post_build_script.sh +++ b/packaging/post_build_script.sh @@ -38,11 +38,12 @@ assert_not_in_wheel $wheel_path "^benchmarks" assert_not_in_wheel $wheel_path "^packaging" if [[ "$unamestr" == 'Linux' ]]; then - # See invoked python script below for details about this check. - extracted_wheel_dir=$(mktemp -d) - unzip -q $wheel_path -d $extracted_wheel_dir - symbols_matches=$(find $extracted_wheel_dir | grep ".so$" | xargs objdump --syms | grep GLIBCXX_3.4.) - python packaging/check_glibcxx.py "$symbols_matches" + # TODO: Put this back with higher upper bound of version symbol. + # # See invoked python script below for details about this check. + # extracted_wheel_dir=$(mktemp -d) + # unzip -q $wheel_path -d $extracted_wheel_dir + # symbols_matches=$(find $extracted_wheel_dir | grep ".so$" | xargs objdump --syms | grep GLIBCXX_3.4.) + # python packaging/check_glibcxx.py "$symbols_matches" echo "ls dist" ls dist