From ef3c61fae57d6125a4efcc6f2a03d606ccd6bbe9 Mon Sep 17 00:00:00 2001 From: Andreas Holzammer Date: Wed, 29 Aug 2012 08:48:48 +0200 Subject: [PATCH] Add GCC Toolchain also to other platfroms then linux Change-Id: I89904d877d42904b9c37542ad3b51fe513542cfd Reviewed-by: Tobias Hunger --- src/plugins/projectexplorer/projectexplorer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index 1ba854782b6..ced3977d806 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -330,12 +330,12 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er addAutoReleasedObject(new Internal::MsvcToolChainFactory); addAutoReleasedObject(new Internal::WinCEToolChainFactory); #else - addAutoReleasedObject(new Internal::GccToolChainFactory); addAutoReleasedObject(new Internal::LinuxIccToolChainFactory); #endif #ifndef Q_OS_MAC addAutoReleasedObject(new Internal::MingwToolChainFactory); // Mingw offers cross-compiling to windows #endif + addAutoReleasedObject(new Internal::GccToolChainFactory); addAutoReleasedObject(new Internal::ClangToolChainFactory); addAutoReleasedObject(new Internal::DesktopDeviceFactory);