I\'m trying to compile a program in codeblocks using mingw. I had to include libw2_32.a that I don\'t get any compiler errors. The program compiles fine but when I want to r
You have to use -static-libgcc while compiling with mingw’s g++ to eliminate the dependency on LIBGCC_S_SJLJ-1.DLL. You can do that by adding static-libgcc to the linker flags.
I found this info in this post:
http://www.qtcentre.org/threads/39639-MinGW-w64-dependency-on-LIBGCC_S_SJLJ-1-DLL