Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an executable build with Visual Studio 2005 using C#. dumpbin reports that it is x86 and it is claimed that it was built as a x86 target. However, when I try executing it, it somehow becomes a 64bit executable as reported by task manager, process explorer and procmon shows that it loads Framework64. And it fails eventually due to failure to load a 32bit DLL. What could cause this behavior?

share|improve this question
1  
A .NET EXE contains a bootloader program that fires up the CLR so that it can run the embedded IL code in a managed context. I'm not certain of this, but it's possible that the bootloader runs as x86 and it somehow loads an x64 context when the Target is AnyCPU (not sure exactly how the bootloader process works.) – Dan Bryant Jul 27 '11 at 15:57

4 Answers

up vote 17 down vote accepted

You are building it with the AnyCPU target. If you want it to be x86 even on a 64 bit system, then you must target x86.

When you target AnyCPU, the loader runs the process as a 64 bit process on a 64 bit system, but a 32 bit process on a 32 bit system.

share|improve this answer
Well, the guy who builds it claims that it is built with x86 target. And the executable does show up as 32bit according to dumpbin. How do I tell if he did or did not build it with x86 target? – MK. Jul 27 '11 at 15:51
1  
The very fact that it runs as a 64 bit process on a 64 bit system tells you that it was not built to target x86. It must be either AnyCPU or x64. If it was x64 then I guess dumpbin would say so. Dumpbin reports AnyCPU targets as x86, I guess it doesn't know about the magic of AnyCPU. Hence I conclude it is AnyCPU. – David Heffernan Jul 27 '11 at 15:53

Change the platform target from "Any" to "x86" in the project properties / build configuration list.

share|improve this answer

One can use corflags.exe to force it to run as 32-bit.

O:\>corflags
Microsoft (R) .NET Framework CorFlags Conversion Tool.  Version  3.5.30729.1
Copyright (c) Microsoft Corporation.  All rights reserved.

Usage: Corflags.exe Assembly [options]

If no options are specified, the flags for the given image are displayed.

Options:
/ILONLY+ /ILONLY-     Sets/clears the ILONLY flag
/32BIT+  /32BIT-      Sets/clears the 32BIT flag
/UpgradeCLRHeader     Upgrade the CLR Header to version 2.5
/RevertCLRHeader      Revert the CLR Header to version 2.0
/Force                Force an assembly update even if the image is
                      strong name signed.
                      WARNING: Updating a strong name signed assembly
                       will require the assembly to be resigned before
                       it will execute properly.
/nologo               Prevents corflags from displaying logo
/? or /help           Display this usage message
share|improve this answer

"What could cause this behavior?"

To be techically accurate in answering this question, but not quite in the spirit you asked, what causes this behavior is the lack of the 64-bit DLL.

Why doesn't the program have a 64-bit version of it?

In a few years I doubt 32-bit systems will exist anywhere except as ARM and ARM systems will need new DLLs to be recompiled anyway.

share|improve this answer
1  
Because the 64bit version of the DLL is not released yet? – MK. Jul 27 '11 at 21:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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