Skip to content Skip to sidebar Skip to footer
Showing posts with the label Boost

Boost Python On Windows Crashes At Import("__main__");

I am writting a program which uses boost python embedded. My program works no problem on Linux Mint… Read more Boost Python On Windows Crashes At Import("__main__");

What Happens During And After Boost::python::import?

The Boost documentation does not specify this. When I use boost::python::import, where exactly is t… Read more What Happens During And After Boost::python::import?

How Iterate (key, Value) Boost::python:dict

How can I iterate in C++ over my boost::python:dict ? I need key and value in every loop round. My… Read more How Iterate (key, Value) Boost::python:dict

Boost Python 3 Iterate Over Dict

I used (Python 2.7) to iterate over a dict this way: boost::python::list myList = myDict.items(); f… Read more Boost Python 3 Iterate Over Dict

How To Compile Static Library With -fpic From Boost.python

By default, libboostpython.a is compiled without -fPIC. But I have to make a python extension and i… Read more How To Compile Static Library With -fpic From Boost.python

Error Compiling Boost.python Quickstart

I've been trying to compile the Boost.Python 'quickstart' ($BOOST_PATH\libs\python\exam… Read more Error Compiling Boost.python Quickstart

Swig And Boost::variant

I'm in the middle of trying to wrap a c++ project into a python api using SWIG and I'm runn… Read more Swig And Boost::variant

Boost.Python Custom Converter

I have a class taking a vector as parameter (a binary file content). I would like to convert python… Read more Boost.Python Custom Converter