Thread: 64 bit computer, 64 bit VC++ express 2010, then why?

  1. #1
    Registered User
    Join Date
    Oct 2011
    Posts
    29

    64 bit computer, 64 bit VC++ express 2010, then why?

    I am running into this issue:

    warning : Platform 'x64' referenced in the project file 'xyz' cannot be found. Please make sure you have it installed under '%VCTargetsPath%\Platforms\x64'.

    I had tried the same project/solution and it ran just fine in another computer that also had windows 7 64 bit, but a full version Visual Studio 2010 64 bit.

    Now on this other computer, I'm trying to run the same program with Visual C++ 2010 express but get that error. What's more, my solution is, by default set on the configuration manager to x64, not win32. However, I can't open the project properties unless it's set to win32, otherwise it says "unknown error" on a pop up error message. Any idea is to be done? Anything I could add?

  2. #2
    Registered User
    Join Date
    Oct 2011
    Posts
    29
    Correction: I am not even entire sure what this Visual C++ express 2010 version is. I thought it was x64 but I went back to the page I got it from (Visual C++ 2010 Express | Microsoft Visual Studio) and it doesn't specify, just says it's available for both...

  3. #3
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    The 64-bit compiler is an optional component. If you did not deliberately install it, it ain't there.
    Code:
    //try
    //{
    	if (a) do { f( b); } while(1);
    	else   do { f(!b); } while(1);
    //}

  4. #4
    Registered User
    Join Date
    Oct 2011
    Posts
    29
    Of course! I just double checked and that was the difference. The full version of Visual Studio 2010 does have the 64 bit compiler. VC++ express only comes with x86. Thanks!

  5. #5
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    you can download the platform SDK for x64 from microsoft.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Errors inside a function C++ 2010 express
    By Nightstaber in forum C++ Programming
    Replies: 14
    Last Post: 12-08-2011, 11:45 PM
  2. Visual C++ 2010 Express - difference from 2008?
    By ulillillia in forum Tech Board
    Replies: 26
    Last Post: 08-01-2011, 09:08 PM
  3. Visual C++ 2010 Express Portable Programs
    By Bronx68 in forum Windows Programming
    Replies: 1
    Last Post: 08-01-2011, 09:07 AM
  4. C project in Microsoft Visual C++ 2010 Express?
    By alexbcg in forum C Programming
    Replies: 2
    Last Post: 12-08-2010, 02:39 PM
  5. Visual C++ 2010 express problems
    By dnj23 in forum Windows Programming
    Replies: 6
    Last Post: 08-10-2010, 06:16 AM

Tags for this Thread