From b36cd3cdf4f8043be2c471fa72f971d90fb80ff4 Mon Sep 17 00:00:00 2001 From: absurdfarce Date: Tue, 23 Dec 2025 17:44:32 -0600 Subject: [PATCH] Update CFLAGS to be the default for whatever cibuildwheel 3.2.1 is using plus -s to strip symbols. --- .github/workflows/build_wheels_linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels_linux.yml b/.github/workflows/build_wheels_linux.yml index eac7b2d..8a5b730 100644 --- a/.github/workflows/build_wheels_linux.yml +++ b/.github/workflows/build_wheels_linux.yml @@ -13,7 +13,7 @@ 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_ENVIRONMENT: CFLAGS='-s -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O3 -Wall' steps: - uses: actions/checkout@v4 with: