Overhaul of RCOMP/GCCE error parsing to fix 8901:
-RCOMP error parser will defer C preprocessor errors to GCCECompiler error parser.
-GCCE error parser is splited into compiler/assembler/linker, calling their counterpart in CDT respectively before handling special cases.
-Updated error messages RCOMP error parser according to latest copy of RCOMP source.
-WINSCW build configuration is using CDT GCC error parser instead of GCCE(for RCOMP C preprocessor error)
Updated test case for error parsing
-Added Bugzilla regression for GCC and make error parser
-Converted test case from hardcoded SDK_ID to picking up the first SDK from device.xml with the build config specified by the test.
-Fixed bug in test harness for input file ends on the last line so it was processed in the same run.
-Fixed bug in test harness for not clearing problem view before each run(for visual cross check).
-Rewritten test harness to use JDOM XML handling(from JAXP), to solve deployment issue in newer JRE.
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.cdt.debug.core.CDebugger">
<debugger
platform="*"
name="Symbian Crash Debugger"
modes="run"
cpu="*"
class="com.nokia.carbide.cpp.debug.crashdebugger.CrashDebugger"
id="com.nokia.carbide.cpp.debug.crashdebugger.CrashDebugger">
</debugger>
</extension>
<extension
point="org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
name="Symbian OS Crash Debugger"
delegate="com.nokia.carbide.cpp.debug.crashdebugger.CrashDebuggerLaunchDelegate"
modes="run,debug"
public="true"
id="com.nokia.carbide.cpp.debug.crashdebugger.crashDebugLaunch"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="com.nokia.cdt.debug.cw.symbian.CarbideSourcePathComputer">
</launchConfigurationType>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTypeImages">
<launchConfigurationTypeImage
icon="icons/launch_config_file_16x16.png"
configTypeID="com.nokia.carbide.cpp.debug.crashdebugger.crashDebugLaunch"
id="com.nokia.carbide.cpp.debug.crashdebugger.crashDebugLaunchImage">
</launchConfigurationTypeImage>
</extension>
<extension
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
<launchConfigurationTabGroup
type="com.nokia.carbide.cpp.debug.crashdebugger.crashDebugLaunch"
class="com.nokia.carbide.cpp.debug.crashdebugger.ui.CrashDebugConfigurationTabGroup"
id="com.nokia.carbide.cpp.debug.crashdebugger.crashDebugLaunchTabGroup">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="false"
category="com.nokia.carbide.cpp"
class="com.nokia.carbide.cpp.debug.crashdebugger.ui.CrashDebuggerView"
icon="icons/cd.png"
id="com.nokia.carbide.cpp.debug.crashdebugger.ui.CrashDebuggerView"
name="Crash Debugger Console">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="com.nokia.carbide.cpp.debug.crashdebugger.CrashDebuggerPerspectiveFactory"
icon="icons/cd.png"
id="com.nokia.carbide.cpp.debug.crashdebugger.CrashDebuggerPerspective"
name="Crash Debugger"/>
</extension>
<extension point="org.eclipse.help.contexts">
<contexts file="html/context_help/crash_debugger.xml"/>
</extension>
<!-- TOC extension point adds help contents to Carbide Help section -->
<extension
point="org.eclipse.help.toc">
<toc
file="html/tocCDB.xml"
primary="true" />
<toc
file="html/tocCDB_Concepts.xml"
primary="false" />
<toc
file="html/tocCDB_Tasks.xml"
primary="false" />
<toc
file="html/tocCDB_References.xml"
primary="false" />
<index path="index" />
</extension>
<!-- KEYWORD INDEX ADDITION -->
<extension point="org.eclipse.help.index">
<index file="html/index.xml" />
</extension>
<extension point="org.eclipse.help.contexts" >
<!-- CARBIDE DEBUG UI HELP (BRKPT, VAR, EXPR, etc) -->
<contexts file="html/context_help/org_eclipse_debug_ui.xml"
plugin="org.eclipse.debug.ui" />
</extension>
</plugin>