Last active
January 31, 2019 15:11
-
-
Save nbenn/2a4ac24a1b9e1dc9d0a2be903530a9b0 to your computer and use it in GitHub Desktop.
Install apache-arrow 0.12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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