Fix up docs for new C++ RC

This commit is contained in:
Jason Paryani
2013-08-30 23:13:20 -07:00
parent 76796f8d75
commit 3772198e82
4 changed files with 12 additions and 16 deletions

View File

@@ -8,13 +8,11 @@ C++ Cap'n Proto Library
You need to install the C++ Cap'n Proto library first. It requires a C++ compiler with C++11 support, such as GCC 4.7+ or Clang 3.2+. Follow installation docs at `http://kentonv.github.io/capnproto/install.html <http://kentonv.github.io/capnproto/install.html>`_ with an added `sudo ldconfig` after you're done installing, or if you're feeling lazy, you can run the commands below::
wget https://github.com/kentonv/capnproto/archive/master.zip
unzip master.zip
cd capnproto-master/c++
./setup-autotools.sh
autoreconf -i
wget http://capnproto.org/capnproto-c++-0.3.0-rc2.tar.gz
tar xzf capnproto-c++-0.3.0-rc2.tar.gz
cd capnproto-c++-0.3.0-rc2
./configure
make -j6 check
make -j8 check
sudo make install
sudo ldconfig
@@ -27,7 +25,7 @@ Using pip is by far the easiest way to install the library. After you've install
pip install -U setuptools
pip install capnp
You only need to run the setuptools line if you have a setuptools older than v0.8.0.
You can control the compiler version with the environment variable CC, ie. `CC=gcc-4.8 pip install capnp`. You only need to run the setuptools line if you have a setuptools older than v0.8.0, and the cython line if you have a version older than v0.19.1.
From Source
---------------------
@@ -47,7 +45,7 @@ If you don't use pip, you will need to manually install Cython, and a setuptools
Development
-------------------
Clone the repo from https://github.com/jparyani/capnpc-python-cpp.git and use the `develop` branch. I'll probably ask you to redo pull requests that target `master` and aren't easily mergable to `develop`.::
Clone the repo from https://github.com/jparyani/capnpc-python-cpp.git and use the `develop` branch. I'll probably ask you to redo pull requests that target `master` and aren't easily mergable to `develop`::
git clone https://github.com/jparyani/capnpc-python-cpp.git
git checkout develop