I am trying to create a debug build for arrow  and gandiva to be used in
c++, possibly in python as well.

Using the following step

cd $ARROW_SOURCE_DIR
cd cpp

rm -rf build
mkdir build
cd build/

cmake .. \
-DBUILD_WARNING_LEVEL=PRODUCTION \
--preset ninja-debug-gandiva
cmake --build . -j 14

shows an error:
```
/usr/bin/ld: cannot find /lib64/libpthread.so.0
/usr/bin/ld: cannot find /usr/lib64/libpthread_nonshared.a
clang: error: linker command failed with exit code 1 (use -v to see
invocation)
```

I am doing it inside a conda environment with :

```

# mamba install -c conda-forge gmock
# mamba install -c conda-forge gtest
# mamba install -c conda-forge google-cloud-cpp

```
Any idea?
-- 
Regards,
Chak-Pong

Reply via email to