You are not logged in.
Pages: 1
$ cat a.C
int main() {}
$ g++ -lboost_python a.C
[...]
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `_PyType_Lookup'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PyList_New'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PyType_GenericAlloc'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PyMem_Malloc'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PyCallable_Check'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PyDict_Clear'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PySequence_SetSlice'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PyLong_AsUnsignedLong'
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/../../../../lib/libboost_python.so: undefined reference to `PyDict_New'
collect2: ld returned 1 exit status
$
What can I try? I already reinstalled boost and boost-libs...
Offline
Thanks. That was the problem.
Offline
Pages: 1