All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
Installation of Py++
Py++ requires pygccxml and GCC-XML. You need the versions of GCC-XML, pygccxml, and Py++ that are taken directly from their respective repositories. Directions for installing GCC-XML can be found here, and for installing pygccxml/py++ they can be found here. The combined set of instructions is presented below (for Linux or Mac OS X):
# Make sure you have cvs and svn. e.g., for Ubuntu Linux: "sudo apt-get install cvs subversion"
# On OS X cvs and svn are already installed.

# create a location to store downloaded data
mkdir repos
cd repos

# get latest version of gccxml, build & install it
cvs -d :pserver:anoncvs@www.gccxml.org:/cvsroot/GCC_XML co gccxml
cd gccxml
cmake .
make
sudo make install
cd ..

# get latest version of pygccxml and Py++, build & install needed packages
svn co https://pygccxml.svn.sourceforge.net/svnroot/pygccxml/pygccxml_dev
cd pygccxml_dev
python setup.py build
sudo python setup.py install
cd ..
svn co https://pygccxml.svn.sourceforge.net/svnroot/pygccxml/pyplusplus_dev
cd pyplusplus_dev
python setup.py build
sudo python setup.py install