From f0e2c6fe1c4b89260844243a98862ebe672e3ad9 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Wed, 5 Sep 2012 10:31:49 +0200 Subject: Add c++11 option to configure.exe Also check for c++11 support in configure.exe (which is also used by MinGW builds). The c++11 check is therefore moved from 'unix' to 'common' directory. Change-Id: I082848f032c2770e52e34f331b83820f395c06b6 Reviewed-by: Qt Doc Bot Reviewed-by: Yuchen Deng Reviewed-by: Thiago Macieira --- tools/configure/configureapp.cpp | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index ff04eeb742..3c5e58b29b 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -272,6 +272,8 @@ Configure::Configure(int& argc, char** argv) dictionary[ "BUILDDEV" ] = "no"; + dictionary[ "C++11" ] = "auto"; + dictionary[ "SHARED" ] = "yes"; dictionary[ "ZLIB" ] = "auto"; @@ -452,7 +454,10 @@ void Configure::parseCmdLine() dictionary[ "BUILDALL" ] = "yes"; else if (configCmdLine.at(i) == "-force-debug-info") dictionary[ "FORCEDEBUGINFO" ] = "yes"; - + else if (configCmdLine.at(i) == "-c++11") + dictionary[ "C++11" ] = "yes"; + else if (configCmdLine.at(i) == "-no-c++11") + dictionary[ "C++11" ] = "no"; else if (configCmdLine.at(i) == "-shared") dictionary[ "SHARED" ] = "yes"; else if (configCmdLine.at(i) == "-static") @@ -1597,6 +1602,9 @@ bool Configure::displayHelp() desc("OPENSOURCE", "opensource", "-opensource", "Compile and link the Open-Source Edition of Qt."); desc("COMMERCIAL", "commercial", "-commercial", "Compile and link the Commercial Edition of Qt.\n"); + desc("C++11", "yes", "-c++11", "Compile Qt with C++11 support enabled."); + desc("C++11", "no", "-no-c++11", "Do not compile Qt with C++11 support enabled.\n"); + desc("SHARED", "yes", "-shared", "Create and use shared Qt libraries."); desc("SHARED", "no", "-static", "Create and use static Qt libraries.\n"); @@ -2044,6 +2052,11 @@ bool Configure::checkAvailability(const QString &part) */ void Configure::autoDetection() { + if (dictionary["C++11"] == "auto") { + if (!dictionary["QMAKESPEC"].contains("msvc")) + dictionary["C++11"] = tryCompileProject("common/c++11") ? "yes" : "no"; + } + // Style detection if (dictionary["STYLE_WINDOWSXP"] == "auto") dictionary["STYLE_WINDOWSXP"] = checkAvailability("STYLE_WINDOWSXP") ? defaultTo("STYLE_WINDOWSXP") : "no"; @@ -2150,6 +2163,18 @@ void Configure::autoDetection() bool Configure::verifyConfiguration() { + if (dictionary["C++11"] != "auto" + && dictionary["QMAKESPEC"].contains("msvc")) { + cout << "WARNING: Qt does not support disabling or enabling any existing C++11 support " + "with MSVC compilers."; + if (dictionary["C++11"] == "yes") + cout << "Therefore -c++11 is ignored." << endl << endl; + else + cout << "Therefore -no-c++11 is ignored." << endl << endl; + + dictionary["C++11"] = "auto"; + } + if (dictionary["SQL_SQLITE_LIB"] == "no" && dictionary["SQL_SQLITE"] != "no") { cout << "WARNING: Configure could not detect the presence of a system SQLite3 lib." << endl << "Configure will therefore continue with the SQLite3 lib bundled with Qt." << endl @@ -2256,6 +2281,9 @@ void Configure::generateOutputVars() qtConfig += "release"; } + if (dictionary[ "C++11" ] == "yes") + qtConfig += "c++11"; + if (dictionary[ "SHARED" ] == "no") qtConfig += "static"; else @@ -3227,6 +3255,7 @@ void Configure::displayConfig() } if (dictionary[ "BUILD" ] == "release" || dictionary[ "BUILDALL" ] == "yes") sout << "Force debug info............" << dictionary[ "FORCEDEBUGINFO" ] << endl; + sout << "C++11 support..............." << dictionary[ "C++11" ] << endl; sout << "Link Time Code Generation..." << dictionary[ "LTCG" ] << endl; sout << "Accessibility support......." << dictionary[ "ACCESSIBILITY" ] << endl; sout << "RTTI support................" << dictionary[ "RTTI" ] << endl; -- cgit v1.2.3