Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Why do I get the error message “The application failed to initialize properly 0xc0000005)…” when running applications I have self compiled ?

0
Posted

Why do I get the error message “The application failed to initialize properly 0xc0000005)…” when running applications I have self compiled ?

0

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

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123