WINSCW: Fix bit width of WINSCW ABIs

This should unbreak WINSCW support

Task-number: QTCREATORBUG-4560
Reviewed-by: Robert Loehning
This commit is contained in:
Tobias Hunger
2011-04-15 17:34:13 +02:00
parent cf0d90f88e
commit 42732605a4

View File

@@ -145,7 +145,7 @@ ProjectExplorer::Abi WinscwToolChain::targetAbi() const
{
return ProjectExplorer::Abi(ProjectExplorer::Abi::ArmArchitecture, ProjectExplorer::Abi::SymbianOS,
ProjectExplorer::Abi::SymbianEmulatorFlavor,
ProjectExplorer::Abi::ElfFormat, false);
ProjectExplorer::Abi::ElfFormat, 32);
}
bool WinscwToolChain::isValid() const