absurdfarce commented on PR #1264: URL: https://github.com/apache/cassandra-python-driver/pull/1264#issuecomment-3687958007
I removed the the "-s" arg to gcc from CFLAGS in order to diagnose the problem: ``` $ git show HEAD commit 2d6517477b44cce69faa7c1b9e08b5525c2eb15e (HEAD -> python1428, origin/python1428) Author: absurdfarce <[email protected]> Date: Tue Dec 23 13:21:34 2025 -0600 Temporarily remove stripping of symbols from shared objects in order to try and diagnose an issue diff --git a/.github/workflows/build_wheels_linux.yml b/.github/workflows/build_wheels_linux.yml index c8d5af1..88628ef 100644 --- a/.github/workflows/build_wheels_linux.yml +++ b/.github/workflows/build_wheels_linux.yml @@ -13,7 +13,6 @@ jobs: CIBW_TEST_REQUIRES: pytest mock pure-sasl eventlet CIBW_TEST_COMMAND: echo "wheel is installed" CIBW_BEFORE_ALL: yum install -y libev libev-devel - CIBW_ENVIRONMENT: CFLAGS='-s' CIBW_BUILD_VERBOSITY: 3 steps: - uses: actions/checkout@v4 ``` and the problem... went away?!?!?!?!?! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

