I am trying to create an additional library under Arch Linux
$ uname -a
Linux wincode 2.6.37-ARCH
$ python --version
Python 3.2
$ ls /usr/include/python
python2.7/ python3.2mu/
$ ls /usr/lib/python
python2.6/ python2.7/ python3.1/ python3.2/
I am building it with aur-repo. You can autocompile the script here .
Now I get:
./boost/python/*:50:23: fatal error: pyconfig.h: No such file or directory
compilation terminated.
in almost any file from boost.python library. So something is wrong with python, and boost cannot find it. At the end of the compilation, I got:
...failed updating 336 targets...
...skipped 48 targets...
...updated 13264 targets...
Any help?
source
share