From f0e2c6fe1c4b89260844243a98862ebe672e3ad9 Mon Sep 17 00:00:00 2001 From: Kai Koehne <kai.koehne@nokia.com> Date: Wed, 5 Sep 2012 10:31:49 +0200 Subject: [PATCH] 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 <qt_docbot@qt-project.org> Reviewed-by: Yuchen Deng <loaden@gmail.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> --- config.tests/{unix => common}/c++11/c++11.cpp | 0 config.tests/{unix => common}/c++11/c++11.pro | 0 configure | 2 +- tools/configure/configureapp.cpp | 31 ++++++++++++++++++- 4 files changed, 31 insertions(+), 2 deletions(-) rename config.tests/{unix => common}/c++11/c++11.cpp (100%) rename config.tests/{unix => common}/c++11/c++11.pro (100%) diff --git a/config.tests/unix/c++11/c++11.cpp b/config.tests/common/c++11/c++11.cpp similarity index 100% rename from config.tests/unix/c++11/c++11.cpp rename to config.tests/common/c++11/c++11.cpp diff --git a/config.tests/unix/c++11/c++11.pro b/config.tests/common/c++11/c++11.pro similarity index 100% rename from config.tests/unix/c++11/c++11.pro rename to config.tests/common/c++11/c++11.pro diff --git a/configure b/configure index 8cc0d30ccf3..b7f46ddae2f 100755 --- a/configure +++ b/configure @@ -3819,7 +3819,7 @@ fi # Detect C++11 support if [ "$CFG_CXX11" != "no" ]; then - if compileTest unix/c++11 "C++11"; then + if compileTest common/c++11 "C++11"; then CFG_CXX11="yes" elif [ "$CFG_CXX11" != "auto" ] && [ "$CFG_CONFIGURE_EXIT_ON_ERROR" = "yes" ]; then echo "C++11 support cannot be enabled due to functionality tests!" diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index ff04eeb742f..3c5e58b29b5 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; -- GitLab