davisusanibar commented on issue #39919: URL: https://github.com/apache/arrow/issues/39919#issuecomment-1934367934
Hi Team, The following Java jars were downloaded from the v15 release and compared with the v14 release: **V15** - Jar: https://repo1.maven.org/maven2/org/apache/arrow/arrow-dataset/15.0.0/arrow-dataset-15.0.0.jar ```` $ unzip arrow-dataset-15.0.0.jar $ shasum -a 256 aarch_64/libarrow_dataset_jni.so fd4d8a470815522e69e174c34840295a9e8e2e021575d203697ae09e1c864cca aarch_64/libarrow_dataset_jni.so $ objdump -p aarch_64/libarrow_dataset_jni.so | grep NEED NEEDED librt.so.1 NEEDED libpthread.so.0 NEEDED libdl.so.2 NEEDED libstdc++.so.6 NEEDED libm.so.6 NEEDED libgcc_s.so.1 NEEDED libc.so.6 NEEDED ld-linux-aarch64.so.1 $ nm aarch_64/libarrow_dataset_jni.so | grep ZTIN6google8protobuf7Messag U _ZTIN6google8protobuf7MessageE ```` **U: The symbol is undefined (not found in this object)** **V14**: - Jar: https://repo1.maven.org/maven2/org/apache/arrow/arrow-dataset/14.0.2/arrow-dataset-14.0.2.jar ```` $ unzip arrow-dataset-14.0.2.jar $ shasum -a 256 aarch_64/libarrow_dataset_jni.so c21cabcd8aaaea8c19197de1955ae0456830c386ea50bd9a298b0e047c4ce932 aarch_64/libarrow_dataset_jni.so $ objdump -p aarch_64/libarrow_dataset_jni.so | grep NEED NEEDED librt.so.1 NEEDED libpthread.so.0 NEEDED libdl.so.2 NEEDED libstdc++.so.6 NEEDED libm.so.6 NEEDED libgcc_s.so.1 NEEDED libc.so.6 NEEDED ld-linux-aarch64.so.1 $ nm aarch_64/libarrow_dataset_jni.so | grep ZTIN6google8protobuf7Messag 0000000002ecddb8 V _ZTIN6google8protobuf7MessageE ```` Glossary: T: The symbol is in the text (code) section U: The symbol is undefined (not found in this object) W: The symbol is weak, which means it has lesser priority than a strong global symbol V: The symbol is weak in the symbol table Using https://github.com/apache/arrow/tree/a61f4af724cd06c3a9b4abd20491345997e532c0, I have built the libraries and can read dataset files. -- 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]
