Created
September 5, 2013 01:06
-
-
Save springmeyer/6444804 to your computer and use it in GitHub Desktop.
Install capnproto on Ubuntu Precise LTS (12.04)
This file contains hidden or 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
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo apt-get install gcc-4.7 g++-4.7 subversion git | |
# note: you can also use update-alternatives to map gcc to gcc-4.7 | |
export CC=gcc-4.7 | |
export CXX=g++-4.7 | |
git clone https://github.com/kentonv/capnproto.git | |
cd capnproto/c++ | |
./setup-autotools.sh | |
autoreconf -i && ./configure && make -j6 check && sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment