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 0145112 commit 8044b89Copy full SHA for 8044b89
tools/wheels/install-librdkafka.sh
@@ -29,7 +29,11 @@ if [[ $OSTYPE == linux* ]]; then
29
# Linux
30
31
# Copy the librdkafka build with least dependencies to librdkafka.so.1
32
- cp -v runtimes/linux-$ARCH/native/{centos6-librdkafka.so,librdkafka.so.1}
+ if [[ $ARCH == arm64* ]]; then
33
+ cp -v runtimes/linux-$ARCH/native/{librdkafka.so,librdkafka.so.1}
34
+ else
35
+ cp -v runtimes/linux-$ARCH/native/{centos6-librdkafka.so,librdkafka.so.1}
36
+ fi
37
ldd runtimes/linux-$ARCH/native/librdkafka.so.1
38
39
elif [[ $OSTYPE == darwin* ]]; then
0 commit comments