Re: [C++] Build/Link against master / custom branch

2022-02-04 Thread Yaron Gvili
2022 3:40 PM To: dev@arrow.apache.org Cc: rt...@hotmail.com Subject: [C++] Build/Link against master / custom branch Hello! We are trying to write some program similar to: https://github.com/apache/arrow/blob/master/cpp/examples/arrow/execution_plan_documentation_examples.cc to test Arrow comp

Re: [C++] Build/Link against master / custom branch

2022-02-03 Thread Li Jin
Thanks David! Will take a look On Thu, Feb 3, 2022 at 3:58 PM David Li wrote: > Check out the "minimal build" example, which builds Arrow, then links to > it separately using CMake: > https://github.com/apache/arrow/tree/master/cpp/examples/minimal_build > > In general you can use CMake options

Re: [C++] Build/Link against master / custom branch

2022-02-03 Thread David Li
Check out the "minimal build" example, which builds Arrow, then links to it separately using CMake: https://github.com/apache/arrow/tree/master/cpp/examples/minimal_build In general you can use CMake options to install to a directory (-DCMAKE_INSTALL_PREFIX) and then use CMake options in your o

[C++] Build/Link against master / custom branch

2022-02-03 Thread Li Jin
Hello! We are trying to write some program similar to: https://github.com/apache/arrow/blob/master/cpp/examples/arrow/execution_plan_documentation_examples.cc to test Arrow compute engine performance. We would like to build the example against Arrow default because we added a "square root" func