Add GCC Toolchain also to other platfroms then linux

Change-Id: I89904d877d42904b9c37542ad3b51fe513542cfd
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
This commit is contained in:
Andreas Holzammer
2012-08-29 08:48:48 +02:00
committed by Tobias Hunger
parent 6529e874e4
commit ef3c61fae5

View File

@@ -330,12 +330,12 @@ bool ProjectExplorerPlugin::initialize(const QStringList &arguments, QString *er
addAutoReleasedObject(new Internal::MsvcToolChainFactory); addAutoReleasedObject(new Internal::MsvcToolChainFactory);
addAutoReleasedObject(new Internal::WinCEToolChainFactory); addAutoReleasedObject(new Internal::WinCEToolChainFactory);
#else #else
addAutoReleasedObject(new Internal::GccToolChainFactory);
addAutoReleasedObject(new Internal::LinuxIccToolChainFactory); addAutoReleasedObject(new Internal::LinuxIccToolChainFactory);
#endif #endif
#ifndef Q_OS_MAC #ifndef Q_OS_MAC
addAutoReleasedObject(new Internal::MingwToolChainFactory); // Mingw offers cross-compiling to windows addAutoReleasedObject(new Internal::MingwToolChainFactory); // Mingw offers cross-compiling to windows
#endif #endif
addAutoReleasedObject(new Internal::GccToolChainFactory);
addAutoReleasedObject(new Internal::ClangToolChainFactory); addAutoReleasedObject(new Internal::ClangToolChainFactory);
addAutoReleasedObject(new Internal::DesktopDeviceFactory); addAutoReleasedObject(new Internal::DesktopDeviceFactory);