Tagged Questions

2
votes
1answer
39 views

Building Boost Python Debug

I am definitely not a bjam expert, so pardon my ignorance if it's something really stupid. I am trying to build a debug version of boost::python using this tutorial. I have built Python 3.3.0 in my ...
1
vote
1answer
75 views

Embedding Python 3 - no builtins?

After much hair loss, I'm looking for help. I'm embedding Python 3.3 into a simple app. One unusual aspect is Python isn't on the path, but it all seems to load OK. But for some reason, nothing can ...
1
vote
0answers
99 views

Issue with SFCB, the python-binding layer and python providers in ESX 4.0

We are writing SFCB providers in python, Since SFCB talks to only C++ providers we need to have an intermediate layer(cmpi-bindings, a python extension module) which can talk to SFCB and start the ...
0
votes
1answer
255 views

Embedding Python into Qt Applications

I would like to use Python in my Qt Application. #project.pro #... LIBS += -L/path_to_python32/libs/ -lpython32 INCLUDEPATH += /path_to_python32/include #... Build Issue undefined reference to ...