Re: Linking against parquet-cpp

2017-12-08 Thread Renato Marroquín Mogrovejo
Thanks Daniel! I figure it out with some help over the slack channel. I ended up using the following command. g++ -std=c++11 parquet_rw.cc -Iparquet-cpp_install/release/include/ parquet-cpp_install/release/libarrow.so.0 -lparquet But the suggested way to do it would be to just install arrow and

Re: Linking against parquet-cpp

2017-12-07 Thread Daniel Lemire
You might be missing a "-l" flag or two in addition to the "-I" flag. You might also need a "-L" flag. On Thu, Dec 7, 2017 at 1:34 PM, Renato Marroquín Mogrovejo < renatoj.marroq...@gmail.com> wrote: > Hi devs, > > I have also sent this question to the parquet mailing list, but I guess > this is