Page 1 of 1

How compile 64 bit with VS C+ 2010 express?

Posted: Wed Aug 28, 2013 10:55 am
by sec
How compile 64 bit with VS C+ 2010 express?
Thanks.

Re: How compile 64 bit with VS C+ 2010 express?

Posted: Wed Aug 28, 2013 11:22 am
by luis
This should be in general discussion I think (wow that was quick).

http://stackoverflow.com/questions/1865 ... 10-express

(I didn't test it)

Re: How compile 64 bit with VS C+ 2010 express?

Posted: Wed Aug 28, 2013 11:55 am
by sec
luis wrote:This should be in general discussion I think (wow that was quick).

http://stackoverflow.com/questions/1865 ... 10-express

(I didn't test it)
This SDK will remove VC++ compiler :|

Thanks.

Re: How compile 64 bit with VS C+ 2010 express?

Posted: Wed Aug 28, 2013 12:02 pm
by Kuron
How compile 64 bit with VS C+ 2010 express?
The express version does not include a 64-bit compiler. Here are instructions on configuring it to compile for 64-bit:

http://www.askyb.com/cpp/configure-visu ... platforms/

Re: How compile 64 bit with VS C+ 2010 express?

Posted: Wed Aug 28, 2013 12:08 pm
by Fred
I did it here and it works. The 64-bit compiler is freely available in the platform SDK.

Re: How compile 64 bit with VS C+ 2010 express?

Posted: Thu Aug 29, 2013 10:53 am
by sec
Fred wrote:I did it here and it works. The 64-bit compiler is freely available in the platform SDK.
Thanks i have done compile 64 lib for PB 64bit 8)
set PB_VC8=cl.exe -I"%PB_VS8%/VC/include" -I"%PB_LIBRARIES%" -DWINDOWS -DX86 -I"%PB_PLATEFORM_SDK%/Windows/v7.0A/Include" /nologo /GS- /D_CRT_NOFORCE_MANIFEST /D_USE_64BIT_TIME_T /D "NDEBUG"

:: Add VisualC++ to the path, so we have access to cl.exe
set PATH=%PB_VS8%/VC/bin/amd64;%PB_VS8%/Common7/IDE;%PATH%
I think move this to Coding Questions :D
Thanks