Re: [C++-sig] building 32 Bit and 64 Bit extensions on the same machine

2012-09-05 Thread Ronny Herzog
Aha! Thank you. This made it work. Ronny Am 8/31/2012 3:34 AM, schrieb Lars Viklund: On Mon, Aug 27, 2012 at 04:23:14PM +0200, Ronny Herzog wrote: Thank you, but this does not seem to work. If I do this with "bjam --address-model=64 -n" Note that the previous poster did not say "--address-

Re: [C++-sig] building 32 Bit and 64 Bit extensions on the same machine

2012-08-30 Thread Lars Viklund
On Mon, Aug 27, 2012 at 04:23:14PM +0200, Ronny Herzog wrote: > Thank you, > > but this does not seem to work. If I do this with > "bjam --address-model=64 -n" Note that the previous poster did not say "--address-model=64". He said "address-model=64". It's a feature, not an option. Features do not

Re: [C++-sig] building 32 Bit and 64 Bit extensions on the same machine

2012-08-27 Thread Ronny Herzog
Thank you, but this does not seem to work. If I do this with "bjam --address-model=64 -n" I can see that it does compile it with my 32Bit Python and without setting the x86_AMD64 flag: "[...] file C:\boost_1_50_0\bin.v2\libs\python\build\msvc-9.0\release\threading-multi\o bject\iterator.obj.r

Re: [C++-sig] building 32 Bit and 64 Bit extensions on the same machine

2012-08-26 Thread Wojciech Mamrak
___ Cplusplus-sig mailing list Cplusplus-sig@python.org http://mail.python.org/mailman/listinfo/cplusplus-sig

Re: [C++-sig] building 32 Bit and 64 Bit extensions on the same machine

2012-08-24 Thread Wojciech Mamrak
Hi, add address-model=64 to Boost::Python bjam compilation command and that's all. Be aware, that not all MSVS versions (e.g. Express Edition) are equipped with 64 Bit compiler. 2012/8/24 Ronny Herzog : > Dear all, > > I want to build 32 bit extensions and 64 bit extensions on my Windows 7 / 32 >

[C++-sig] building 32 Bit and 64 Bit extensions on the same machine

2012-08-24 Thread Ronny Herzog
Dear all, I want to build 32 bit extensions and 64 bit extensions on my Windows 7 / 32 Bit with boost. After two days of checking google I am a bit frustrated. I am new to Boost and it is a bit like a jungle. Can anyone help on what I need to do to set up Boost in the right way and have a Ja