I used 4.7.2 for the past months. Now I downloaded 4.7.3. Now I am searching to type "configure -static". But I don't know where the hell "the qt path". Can anybody shed a light on this issue.
See Question&Answers more detail:osI used 4.7.2 for the past months. Now I downloaded 4.7.3. Now I am searching to type "configure -static". But I don't know where the hell "the qt path". Can anybody shed a light on this issue.
See Question&Answers more detail:osDownload the source package here. Download and install your favorite perl distribution. I must warn you that Strawberry perl comes with its own toolchain and that may get used instead of the MinGW you downloaded. Use ActivePerl if you don't want any trouble, or build it yourself.
Unzip it to say, C:Qt-source
so that there is a configure.exe
in C:Qt-source
Open the toolchain's command prompt
a) If you're using the Visual Studio compiler, search in the "start" menu for a CMD shortcut in the Visual Studio folder. The Windows SDK also has this shortcut.
b) If you're using MinGW, either use the accompanying mingwvars.cmd
, or open a command prompt, (Run->"cmd.exe") and type set PATH=C:pathomingwin;%PATH%
. Try gcc -v
to see if it can be found.
Make a build directory, preferable something like C:Qt
. Do set QTPATH=C:Qt
and set PATH=C:Qtin;%PATH%
and cd C:Qt
, and type:
..Qt-sourceconfigure -static
After configure finishes, you'll either have to type nmake
(Visual Studio) or mingw32-make
.
Go do something else, because it will take a while.