boost python version
I'm trying to use boost.python library in a C++ project (Windows + VS9) but it always tries to link against pyton25.lib.
Is it possibl开发者_开发知识库e to link with version 2.6.x of python?
thanks
You need to recompile boost-python library pointing Boost.Build to needed python version. P.S. This heals a problem of undefined references while linking with library needed. I beleive you've already turned of autolinking.
You could try putting -lpython26
when linking
精彩评论