Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

64-bit build on microsoft visual c++ express 2010

I am trying to compile a vc++ project as 64 bit using visual c++ express 2010. i know that the 64 bit compiler does not come with the default installation of vc++ express so i installed windows sdk for windows 7 as specified here (http://msdn.microsoft.com/en-us/library/9yb4317s.aspx) which includes the 64 bit compiler as i understand. however, there is still no 64 bit option in the configuration manager for vc++. after some searching i found and completed this tutorial (http://jenshuebel.wordpress.com/2009/02/12/visual-c-2008-express-edition-and-64-bit-targets/) as well as the various links at the bottom of this page. despite all my efforts, i still cannot get the 64 bit compiler to show in vc++. i have also tried reinstalling both vc++ and sdk. if anyone has any experience/tips with getting this to work i would really appreciate it. fyi - i am running windows 7(x64).

like image 866
Ben Avatar asked Nov 07 '11 23:11

Ben


1 Answers

finally got this to work by uninstalling everything and reinstalling in the following order:

  1. VS2010 C++ Express (in my case)
  2. SDK 7.1
  3. VS2010 SP1
  4. SP1 Compiler patch KB2519277

once this is done, make sure to change the platform toolset to the windows sdk under project properties->configuration properties->general

like image 198
Ben Avatar answered Oct 17 '22 08:10

Ben