We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d83f9 commit 6527e9dCopy full SHA for 6527e9d
tools/wheels/build-wheels.sh
@@ -35,6 +35,8 @@ case $OSTYPE in
35
# Need to set up env vars (in docker) so that cibuildwheel finds librdkafka.
36
lib_dir=dest/runtimes/linux-$ARCH/native
37
export CIBW_ENVIRONMENT="CFLAGS=-I\$PWD/dest/build/native/include LDFLAGS=-L\$PWD/$lib_dir LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:\$PWD/$lib_dir"
38
+ # Do not include libsasl2 and its dependencies in the resulting wheel.
39
+ export CIBW_REPAIR_WHEEL_COMMAND="auditwheel repair --exclude 'libsasl2.so*' -w {dest_dir} {wheel}"
40
;;
41
darwin*)
42
os=macos
0 commit comments