Skip to content

Instantly share code, notes, and snippets.

@nbenn
Last active January 31, 2019 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbenn/2a4ac24a1b9e1dc9d0a2be903530a9b0 to your computer and use it in GitHub Desktop.
Save nbenn/2a4ac24a1b9e1dc9d0a2be903530a9b0 to your computer and use it in GitHub Desktop.
Install apache-arrow 0.12
# make sure a recent version of bison is available
brew install bison
wget https://www-eu.apache.org/dist/arrow/arrow-0.12.0/apache-arrow-0.12.0.tar.gz
tar -xvf apache-arrow-0.12.0.tar.gz
cd apache-arrow-0.12.0/cpp && mkdir release && cd release
# It is important to statically link to boost libraries
cmake .. -DARROW_PARQUET=ON -DCMAKE_BUILD_TYPE=Release -DARROW_BOOST_USE_SHARED:BOOL=Off \
-DBISON_EXECUTABLE=/usr/local/opt/bison/bin/bison
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment