How compile 64 bit with VS C+ 2010 express?
Posted: Wed Aug 28, 2013 10:55 am
How compile 64 bit with VS C+ 2010 express?
Thanks.
Thanks.
http://www.purebasic.com
https://www.purebasic.fr/english/
This SDK will remove VC++ compilerluis 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)
The express version does not include a 64-bit compiler. Here are instructions on configuring it to compile for 64-bit:How compile 64 bit with VS C+ 2010 express?
Thanks i have done compile 64 lib for PB 64bitFred wrote:I did it here and it works. The 64-bit compiler is freely available in the platform SDK.
I think move this to Coding Questionsset 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%