Yes, just select an empty Qt project in creator.
Yes, just select an empty Qt project in creator.
==========================signature=============== ==================
S.O.L.I.D principles (use them!):
https://en.wikipedia.org/wiki/SOLID_...iented_design)
Do you write clean code? - if you are TDD'ing then maybe, if not, your not writing clean code.
Thanks flyer
Qt dependency is fixed, but now how can I build it statically? I mean, when i run the built exe, it gives an error libgcc_s_dw2-1.dll is missing.
Is your creator configured to work with MinGW?
It sounds like the MinGW configuration is broken, but I can't tell, I am working with msvc as a compiler for my creator, maybe some one else who uses MinGW can help you more.
==========================signature=============== ==================
S.O.L.I.D principles (use them!):
https://en.wikipedia.org/wiki/SOLID_...iented_design)
Do you write clean code? - if you are TDD'ing then maybe, if not, your not writing clean code.
Thanks flyer
BTW Dev C++ compiled exe is not dependent on libgcc_s_dw2-1.dll (with mingw). but when i compile from qtcreator with mingw it does.
I prefer to use QtCreator ide, but don't want that libgcc_s_dw2-1.dll dependency. Anyone has any idea?
That library is responsible for new exception model ("DWARF" as long as I remember) used in gcc 4.4, which is not yet included in standard mingw, but included in mingw bundled with qt (since 4.6). If you try to compile your app using standard mingw and try to link it to qt 4.6 you'll get unresolved symbols for aforementioned reason.
So if you really want to use Qt 4.6 on Windows without that dependencies you will need to fully compile Qt itself using standard mingw (or maybe MSVC) I suppose.
P.S. I may be wrong![]()
Dato0011 (23rd December 2009)
Bookmarks