Hi,
it's possible to compile a single dll or application without LIBGCC_S_SJLJ-1.DLL?
I have try this but nothing happens.
Hi,
it's possible to compile a single dll or application without LIBGCC_S_SJLJ-1.DLL?
I have try this but nothing happens.
You have to use -static-libgcc while compiling with mingw’s g++ to elemenate the dependacy on LIBGCC_S_SJLJ-1.DLL. You can do that by:
Qt Code:
QMAKE_LFLAGS += -static-libgccTo copy to clipboard, switch view to plain text mode
Hope it helps!
Bookmarks