How compile 64 bit with VS C+ 2010 express?

Windows specific forum
sec
Enthusiast
Enthusiast
Posts: 792
Joined: Sat Aug 09, 2003 3:13 am
Location: 90-61-92 // EU or ASIA
Contact:

How compile 64 bit with VS C+ 2010 express?

Post by sec »

How compile 64 bit with VS C+ 2010 express?
Thanks.
User avatar
luis
Addict
Addict
Posts: 3895
Joined: Wed Aug 31, 2005 11:09 pm
Location: Italy

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

Post 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)
"Have you tried turning it off and on again ?"
sec
Enthusiast
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?

Post 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.
User avatar
Kuron
Addict
Addict
Posts: 1626
Joined: Sat Oct 17, 2009 10:51 pm
Location: Pacific Northwest

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

Post 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/
Last edited by Kuron on Wed Aug 28, 2013 12:50 pm, edited 2 times in total.
Fred
Administrator
Administrator
Posts: 18360
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

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

Post by Fred »

I did it here and it works. The 64-bit compiler is freely available in the platform SDK.
sec
Enthusiast
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?

Post 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
Post Reply