nvanwyen commented on issue #37707: URL: https://github.com/apache/arrow/issues/37707#issuecomment-1719353007
Here's what I did ... ``` $ git clone --branch main [email protected]:apache/arrow.git $ cd arrow/cpp && $ mkdir build && cd build $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local -DARROW_PARQUET=ON $ make -j9 $ sudo make install ``` ... and here are the results ... ``` $ date && ls -l /usr/local/lib64/libarrow* /usr/local/lib64/libparquet* Wed Sep 13 20:55:17 EDT 2023 -rw-r--r--. 1 root root 26999428 Sep 13 20:38 /usr/local/lib64/libarrow.a -rw-r--r--. 1 root root 48902074 Sep 13 20:54 /usr/local/lib64/libarrow_bundled_dependencies.a lrwxrwxrwx. 1 root root 16 Sep 13 14:46 /usr/local/lib64/libarrow.so -> libarrow.so.1400 lrwxrwxrwx. 1 root root 20 Sep 13 14:46 /usr/local/lib64/libarrow.so.1400 -> libarrow.so.1400.0.0 -rwxr-xr-x. 1 root root 21130208 Sep 13 20:38 /usr/local/lib64/libarrow.so.1400.0.0 -rw-r--r--. 1 root root 10102862 Sep 13 20:39 /usr/local/lib64/libparquet.a lrwxrwxrwx. 1 root root 18 Sep 13 14:46 /usr/local/lib64/libparquet.so -> libparquet.so.1400 lrwxrwxrwx. 1 root root 22 Sep 13 14:46 /usr/local/lib64/libparquet.so.1400 -> libparquet.so.1400.0.0 -rwxr-xr-x. 1 root root 5103584 Sep 13 20:39 /usr/local/lib64/libparquet.so.1400.0.0 ``` The same exact SIGILL is raised when the ```arrow::io::ReadableFile::Open()``` is made. You should also note, that using the libraries as provided in the YUM repository (v13.00) also produces these errors. -- 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]
