I compile my C++ source code with Visual Studio 11 Developer Preview. I statically link to the runtime library.

The resulting executable cannot be executed on Windows XP. When I try to execute it on Windows XP I get the error message "[Executable Path] is not a valid Win32 Application.".

According to Microsoft Visual Studio 11 won't support Windows XP.

How does it work that the resulting executable cannot be executed on Windows XP? Is there anything special in the executable?

link|improve this question

4  
Is it a 64 bit app? What does dumpbin say about the PE headers? The message suggests that this is being rejected very early by the loader. If it was down to missing implicit imports then you'd get a different message. – David Heffernan Oct 9 '11 at 10:14
1  
Yeah, use dumpbin /headers and I think you are looking for the subsystem version. Editbin can probably fix this (unless they've crippled that too). – David Heffernan Oct 9 '11 at 10:30
1  
I have changed the subsystem version. Now I get the following error: "The Procedure entry point FLSAlloc could not be located in the dynamic link library KERNEL32.dll.". This means the executable is statically linked to a function which only exists in Windows Vista and above. My initial question has been answered now. Thank you for your help. – Norbert Willhelm Oct 9 '11 at 11:02
1  
@NorbertWillhelm: The page I linked to replaces some functions... – Anders Oct 9 '11 at 12:08
1  
FlsAlloc() used to be retrieved with GetProcAddress(). Clearly no longer. It isn't used for fibers, it takes advantage of the callback that can be registered. Runs after a thread exits, used to cleanup thread specific data in case of an abnormal thread abort. – Hans Passant Oct 9 '11 at 13:13
show 6 more comments
feedback

1 Answer

up vote 14 down vote accepted

They seem to drop support for older systems in every new release of VS (NT4,2000,XP) Even if you don't use the CRT at all, they still force the PE subsystem version to high numbers. You can work around that by changing the numbers back to 5.0 in a post build step. Just changing those numbers should allow the exe to start on XP unless the new CRT is using WinAPI functions that don't exist on XP.

The other alternative if you want to keep using VS11 is to use multi-targeting and older compilers...

link|improve this answer
4  
The v11 CRT is using APIs that don't exist on XP, including CompareStringEx, EnumSystemLocalesEx and GetTickCount64. Microsoft's position is that "Windows XP is not a supported operating system for the release (design-time or run-time)." (see connect.microsoft.com/VisualStudio/feedback/details/690617/…) – RichieHindle Nov 7 '11 at 14:50
1  
I show you what functions are missing (for both CRT and MFC) and how to work around the fact that these functions are missing on XP at this blog post: tedwvc.wordpress.com/2012/03/11/… – Ted. Mar 13 at 14:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.