Qt 5.6 & mingw_49_32
Unsolved
General and Desktop
-
I recently updated to Qt 5.6 (compiled static) and mingw49_32. As a result,
when I compile, my program now refuses to run, complaining:libgcc_s_dw2-1.dll
libwinpthread-1.dll
libstdc++-6.dllare missing. I can include these DLLs with the program and all works,
however, previously with Qt 5.4.2/mingw491_32 my programs were fully
static, no external DLLs required.I'd rather not ship these DLLs. How can I tell mingw to compile them into the program statiically?
-
Hi! Can you try adding "-static-libgcc -static-libstdc++" to your compiler flags?
-