How compile 64 bit with VS C+ 2010 express?
Thanks.
How compile 64 bit with VS C+ 2010 express?
Re: How compile 64 bit with VS C+ 2010 express?
This should be in general discussion I think (wow that was quick).
http://stackoverflow.com/questions/1865 ... 10-express
(I didn't test it)
http://stackoverflow.com/questions/1865 ... 10-express
(I didn't test it)
"Have you tried turning it off and on again ?"
-
sec
- Enthusiast

- Posts: 792
- Joined: Sat Aug 09, 2003 3:13 am
- Location: 90-61-92 // EU or ASIA
- Contact:
Re: How compile 64 bit with VS C+ 2010 express?
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)
Thanks.
Re: 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:How compile 64 bit with VS C+ 2010 express?
http://www.askyb.com/cpp/configure-visu ... platforms/
Last edited by Kuron on Wed Aug 28, 2013 12:50 pm, edited 2 times in total.
Re: How compile 64 bit with VS C+ 2010 express?
I did it here and it works. The 64-bit compiler is freely available in the platform SDK.
-
sec
- Enthusiast

- Posts: 792
- Joined: Sat Aug 09, 2003 3:13 am
- Location: 90-61-92 // EU or ASIA
- Contact:
Re: 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%
Thanks

