I'm using the CSFML library to compile my application in Windows with MinGW/MSYS. I have linked my application with the -static-libgcc option. If I run depends.exe (dependencywalker.com) on my executable I see that it doesn't directly depend on libgcc_s_dw2-1.dll, but because my application depends on (for example) csfml-audio.dll, and because csfml-audio.dll depends on libgcc_s_dw2-1.dll, my application won't run unless I bundle libgcc_s_dw2-1.dll. I don't want to distribute libgcc_s_dw2-1.dll. Is there any chance that I can convince you chaps to compile the CSFML lib for mingw with the -static-libgcc linker option to remove this dependency from your officially distributed DLLs?