Re: Problem with building C++ flight code

2020-05-11 Thread Fan Liya
Hi Neal, Thanks a lot for your kind reply. I have opened ARROW-8771 to track it. Best, Liya Fan On Tue, May 12, 2020 at 4:03 AM Neal Richardson wrote: > We maintain a slimmer version of boost that only includes the modules Arrow > requires. See > https://github.com/apache/arrow/blob/master/cp

Re: Problem with building C++ flight code

2020-05-11 Thread Neal Richardson
We maintain a slimmer version of boost that only includes the modules Arrow requires. See https://github.com/apache/arrow/blob/master/cpp/build-support/trim-boost.sh. I don't see process.hpp included, so it must not have been documented previously that we required it. We can add it to the list. Co

Re: Problem with building C++ flight code

2020-05-11 Thread Fan Liya
Hi Antoine, I manually downloaded a boost package from https://www.boost.org/ , and verified that you are right. Thank you!!! It seems the one automatically downloaded when running make command is not complete

Re: Problem with building C++ flight code

2020-05-11 Thread Antoine Pitrou
Le 11/05/2020 à 05:37, Fan Liya a écrit : > Hi Wes, > > Thanks a lot for your kind reply. > > It did not work for me. > Please note that we have two boost libraries in our system: one is > installed by running yum install ...; and the other is downloaded by GNU > make when building the code. >

Re: Problem with building C++ flight code

2020-05-10 Thread Fan Liya
Hi Wes, Thanks a lot for your kind reply. It did not work for me. Please note that we have two boost libraries in our system: one is installed by running yum install ...; and the other is downloaded by GNU make when building the code. Neither of the boost libraries has the boost/process.hpp file.

Re: Problem with building C++ flight code

2020-05-10 Thread Wes McKinney
Try adding -DBOOST_SOURCE=BUNDLED. Boost is a header-only dependency so you don't need to depend on your system package manager's Boost On Sun, May 10, 2020 at 9:23 PM Fan Liya wrote: > > Hi all, > > I was using the following command to build the flight code: > > cmake -DCMAKE_BUILD_TYPE=Debug -D

Problem with building C++ flight code

2020-05-10 Thread Fan Liya
Hi all, I was using the following command to build the flight code: cmake -DCMAKE_BUILD_TYPE=Debug -DARROW_FLIGHT=ON ../arrow/cpp make arrow_flight and got the following error: fatal error: boost/process.hpp: No such file or directory After some investigation, it seems the boost/process.hpp f