Compiling for x64 on x86 System in VS08, no binaries are created
I've got a C++ (Native) DLL that I'm trying to compile for x64 on my x86 system, which should work fine, but the actual binaries are not being created. The build process runs and VS says that everything was successful, but when I go i开发者_JAVA技巧nto .\x64\Release\ the only file that is there is test.dll.intermediate.manifest, which is just a bunch of xml code.
Any idea why this would be happening?
Can they be created in some other location?
Try to increase build output verbosity by changing Tools/Options/Projects and Solutions/Build and Run/"MSBuild project build output verbosity" setting to Detailed, hopefully that would allow you to see where the binaries are created.
精彩评论