Error: The Side-by-Side configuration information in “BLAH.EXE” contains errors

后端 未结 5 1833
轻奢々
轻奢々 2020-12-18 21:09

This is the error Dependency Walker gives me on an executable that I am building with VC++ 2005 Express Edition. When trying to run the .exe, I get:

This app         


        
5条回答
  •  青春惊慌失措
    2020-12-18 22:00

    I've had this problem. The solution has two steps:
    1. Compile your program in "Release" mode instead of "Debug" mode (there's usually a combo-box in the toolbar)
    2. Download from Microsoft their Redistributable Package of runtime components. Make sure to download the x86 edition for 32-bit computers and the x64 edition for 64-bit computers/OSes. Install this package on the target computer, and your application should run fine

    P.S. This is a SxS thing
    P.P.S. Alternatively, use a different compiler (like GCC, for example with Dev-Cpp) to compile your program's source, and your headaches will disappear.

提交回复
热议问题