Re: Re: debug build error for arrow and gandiva

2022-03-17 Thread Chak-Pong Chung
I will keep the error and the build script in sync to reflect the latest error. Currently, it says ``` arrow/compute/kernels/scalar_string_internal.h:216:20: error: unused function 'StringClassifyDoc' [-Werror,-Wunused-function] ``` My end goal is to conda package a debug build. On Thu, Mar 17, 2

Re: Re: debug build error for arrow and gandiva

2022-03-17 Thread Chak-Pong Chung
Hi Weston, Thank you for taking a look at this. I have updated the build-arrow.sh script and checked the yml for dependencies as you suggested. https://drive.google.com/file/d/1F3vlIXsf_9-RAhmuIiEPLAi_CXpECgUq/view?usp=sharing https://drive.google.com/file/d/10hjHQ7UQ6uLAVAlvZA4MvQ24cIQ0GNrM/vie

Re: Re: debug build error for arrow and gandiva

2022-03-15 Thread Weston Pace
If you can include the full failed build log that may help. I did confirm that I can build ninja-debug-gandiva though I had to install considerably more conda dependencies than the ones you listed (e.g. boost, gmock, gflags, etc). Presumably you have these in your base conda environment or instal

RE: Re: debug build error for arrow and gandiva

2022-02-21 Thread jimmy
I tried to build using "ninja-debug-maximal" - Debug build with everything enabled (except benchmarks and CUDA) I have same problem, I tried to build the release 7.0.0 branch using conda environment with dependencies yml mentioned in the link below

Re: debug build error for arrow and gandiva

2022-02-20 Thread Chak-Pong Chung
I just tried `--preset ninja-debug-basic`, same error. When trying with `--preset ninja-debug-maximal`, https://anaconda.org/search?q=librados Does it work with clang build? If so, which version of clang? If not, which version of GCC should I use? I tried the 6.0.1 and 7.0.0 release. On Sun, F

debug build error for arrow and gandiva

2022-02-20 Thread Chak-Pong Chung
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 sho