diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2010-03-25 16:23:45 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2010-04-08 15:15:01 (GMT) |
commit | 9ff7a7252ded96084c40947f5ae386b7365c180d (patch) | |
tree | 40ea9fc47124529a485c8b449ba9692bb56fea64 /tools/configure | |
parent | 806f0c05ec590d2d8ad0b5e0a6b2b22c76c4d871 (diff) | |
download | Qt-9ff7a7252ded96084c40947f5ae386b7365c180d.zip Qt-9ff7a7252ded96084c40947f5ae386b7365c180d.tar.gz Qt-9ff7a7252ded96084c40947f5ae386b7365c180d.tar.bz2 |
Make configure.exe compatible with mingw 64
Diffstat (limited to 'tools/configure')
-rw-r--r-- | tools/configure/environment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/environment.cpp b/tools/configure/environment.cpp index 74bebb2..60b8dcc 100644 --- a/tools/configure/environment.cpp +++ b/tools/configure/environment.cpp @@ -73,7 +73,7 @@ struct CompilerInfo{ } compiler_info[] = { // The compilers here are sorted in a reversed-preferred order {CC_BORLAND, "Borland C++", 0, "bcc32.exe"}, - {CC_MINGW, "MinGW (Minimalist GNU for Windows)", 0, "mingw32-gcc.exe"}, + {CC_MINGW, "MinGW (Minimalist GNU for Windows)", 0, "g++.exe"}, {CC_INTEL, "Intel(R) C++ Compiler for 32-bit applications", 0, "icl.exe"}, // xilink.exe, xilink5.exe, xilink6.exe, xilib.exe {CC_MSVC6, "Microsoft (R) 32-bit C/C++ Optimizing Compiler (6.x)", "Software\\Microsoft\\VisualStudio\\6.0\\Setup\\Microsoft Visual C++\\ProductDir", "cl.exe"}, // link.exe, lib.exe {CC_NET2002, "Microsoft (R) 32-bit C/C++ Optimizing Compiler.NET 2002 (7.0)", "Software\\Microsoft\\VisualStudio\\7.0\\Setup\\VC\\ProductDir", "cl.exe"}, // link.exe, lib.exe |