For what it's worth, here's what I have when I did a 32-bit debugging build
of Stackless Python.  Note that I have turned on debugging and stuff like
that.  You don't need that, but it should give you an idea:

user-config.jam
using python : 2.6 :
D:\\temp\\stackless_src\\python-2.6.5-stackless\\PCbuild\\python_d.exe
  : D:\\Python26\\Include
  : D:\\temp\\stackless_src\\python-2.6.5-stackless\\PCbuild
  : <python-debugging>on ;

my build sequence (for doing the whole thing)
set INCLUDE=D:\Python26\include;D:\Python26\include\Stackless
b2 --toolset=msvc-10.0 --build-type=complete stage
b2 --toolset=msvc-10.0 --build-type=complete architecture=x86
address-model=32 stage
b2 --toolset=msvc-10.0 --user-config=user-config.jam --with-python
--build-type=complete architecture=x86 address-model=32 stage



> Building Boost.Python can be a real adventure.  From where I'm sitting
> right now, I wouldn't be able to tell you what is wrong because I'm no
> expert myself.  I had recently done a debug build, and wrote down my steps,
> at home.  However, I'm betting you don't really need to build.  It looks to
> me like you're not as concerned with building the DLL as you with just
> using them.  If that is the case, then maybe consider the pre-built
> libraries you could get here:
>
> http://www.boostpro.com/download/
>
> That *should* just work, but you could smash into some odd compatibility
> stuff with however Enthought built their distribution--then you'd have to
> build from source.
>
_______________________________________________
Cplusplus-sig mailing list
Cplusplus-sig@python.org
http://mail.python.org/mailman/listinfo/cplusplus-sig

Reply via email to