File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ case $OSTYPE in
3636 lib_dir=dest/runtimes/linux-$ARCH /native
3737 export CIBW_ENVIRONMENT=" CFLAGS=-I\$ PWD/dest/build/native/include LDFLAGS=-L\$ PWD/$lib_dir LD_LIBRARY_PATH=\$ LD_LIBRARY_PATH:\$ PWD/$lib_dir "
3838 # Do not include libsasl2 and its dependencies in the resulting wheel.
39- export CIBW_REPAIR_WHEEL_COMMAND=" auditwheel repair --exclude libsasl2.so.3 -w {dest_dir} {wheel}"
39+ export CIBW_REPAIR_WHEEL_COMMAND=" auditwheel repair --exclude libsasl2.so.2 --exclude libsasl2.so. 3 -w {dest_dir} {wheel}"
4040 ;;
4141 darwin* )
4242 os=macos
Original file line number Diff line number Diff line change @@ -55,7 +55,10 @@ if [[ $OSTYPE == linux* ]]; then
5555 patchelf --set-soname librdkafka_sasl2_3.so.1 --output $LIBDIR /{librdkafka_sasl2_3.so.1,librdkafka.so}
5656 ln -s librdkafka_sasl2_3.so.1 $LIBDIR /librdkafka_sasl2_3.so
5757 fi
58- ldd $LIBDIR /librdkafka.so.1
58+ for lib in $LIBDIR /librdkafka* .so.1; do
59+ echo $lib
60+ ldd $lib
61+ done
5962
6063elif [[ $OSTYPE == darwin* ]]; then
6164 # MacOS X
You can’t perform that action at this time.
0 commit comments