Add build parsers for S60.

This is a initial version including
 * ABLD error parsing
 * RVCT compiler output parsing.

Reviewed-By: con
This commit is contained in:
Tobias Hunger
2009-11-09 14:57:45 +01:00
parent 01473fec8b
commit e0b27ef72e
11 changed files with 500 additions and 8 deletions

View File

@@ -115,6 +115,13 @@ bool MakeStep::init(const QString &name)
if (type == ProjectExplorer::ToolChain::MSVC || type == ProjectExplorer::ToolChain::WINCE)
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_MSVC);
else if (ProjectExplorer::ToolChain::GCCE == type)
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_GCCE);
else if (ProjectExplorer::ToolChain::WINSCW == type)
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_WINSCW);
else if (ProjectExplorer::ToolChain::RVCT_ARMV5 == type ||
ProjectExplorer::ToolChain::RVCT_ARMV6 == type)
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_RVCT);
else
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_GCC);