When running make I get an error saying I'm missing libgmp-10.dll.
-
When running depwalker on qmake I don't even see it listing libgmp-10.dll. I don't see it loading any libraries that are outside the system32 directory except for 2 or 3 which still seem to be included w/Windows and are located somewhere within C:\Windows. Any idea why this would be?
-
I am running just make.exe, but apparently it should be mingw32-make because I am no longer getting errors : ). You are the man. So this is an unrelated question, but I just assumed compiling it with qmake might resolve this, but how do you suppress the console window from opening in Windows when starting the application through explorer? I'm guessing this is a C++ problem and completely unrelated to Qt, I hope you don't mind me asking out of place.
-
[quote author="kryptobs2000" date="1292140225"]So this is an unrelated question, but I just assumed compiling it with qmake might resolve this, but how do you suppress the console window from opening in Windows when starting the application through explorer? I'm guessing this is a C++ problem and completely unrelated to Qt, I hope you don't mind me asking out of place. [/quote]
I don't mind, but generally for the forum system to work best a new post should be created. The issue you are seeing with the console window is often caused by having "CONFIG += console" in the .pro file of the project. This is a useful setting if you want to display messages with standard output or error streams (or use qDebug()), but for those messages Windows must open the console window.
-
Awesome, thanks so much man, you made my night. I was starting to get pretty frustrated there for a second, but thankfully just put it aside and asked for help instead :P.
-
Make.exe is different from the make.bat present in the Qt bin directory. The first one is MSYS make (or even Cygwin or GnuWin32 make but it has minor probability) which is incopatible with Qt. Are you runnning make from MSYS command prompt?
-
Yeah, that's where it came from then. I think I may even have two copies of mingw sitting around, probably not the best idea (though only 1 is on the path I believe). So should I uninstall mingw? I didn't think Qt came with mingw, which I take it you're implying should have been installed for me?
-
For me, as I need to compile stuff more closely related to Qt, I’ve come into solution that I just build Qt by myself on Windows, and just use that qtvars.bat script as base for setting the instance I need to. (found from binary releases)
This allows me to have separate installations of Qt without actually conflicting with each other, and same goes for mingw versions, and such.
I don’t know if those SDK thingys messes with PATH, but I think it’s better to leave it alone unless you are 100% positive you won’t ever need any other Qt version than this single one. It just makes stuff confusing and very error prone.
-
[quote author="kryptobs2000" date="1292168911"]Yeah, that's where it came from then. I think I may even have two copies of mingw sitting around, probably not the best idea (though only 1 is on the path I believe). So should I uninstall mingw? I didn't think Qt came with mingw, which I take it you're implying should have been installed for me?[/quote]
The Qt SDK comes with mingw. The binary Qt distribution does not.