Why do I get the error message “The application failed to initialize properly 0xc0000005)…” when running applications I have self compiled ?
This error indicates a problem of the ld auto-import support and newer gcc releases using readonly variables. To avoid this problem you should uses a recent qt/cygwin releases (>3.3.3), which contains all required support (see mkspecs/cygwin-g++) or add the required stuff by hand: • download the specific ld linker script and either • add the following switches to your compile line: … -fdata-sections and the following switches to your link line: … -Wl,–enable-runtime-pseudo-reloc -Wl,–script,/i386pe.x-no-rdata • or use the following configure line CFLAGS=”-fdata-sections” LDFLAGS=”-Wl,–enable-runtime-pseudo-reloc -Wl,–script,/i386pe.x-no-rdata” .. configure …
Related Questions
- Why do I get the "The application failed to initialize properly" or "MSCOREE.DLL was not found" error message when running the compiled program?
- Why do I get the error message "The application failed to initialize properly 0xc0000005)..." when running applications I have self compiled ?
- Why do I receive an error message that says, The application failed to initialize properly when I try to launch Painkiller?