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 id="editorExtender" name="Data Model Editor Extender" schema="schema/editorExtender.exsd"/>
<extension point="org.eclipse.ui.editors">
<editor name="Carbide.c++ UI Design Editor"
icon="icons/s60_UI_designer.png"
class="com.nokia.sdt.uidesigner.ui.DesignerEditor"
contributorClass="com.nokia.sdt.uidesigner.ui.ViewEditorActionBarContributor"
id="com.nokia.sdt.uidesigner.viewEditor">
<contentTypeBinding contentTypeId="com.nokia.sdt.uimodel.carbideModel"/>
</editor>
</extension>
<extension
point="org.eclipse.ui.views">
<category
id="com.nokia.carbide.cpp"
name="%carbideCPPCategory"/>
<view
name="Gallery"
allowMultiple="false"
category="com.nokia.carbide.cpp"
class="com.nokia.sdt.uidesigner.gallery.GalleryView"
icon="icons/gallery.png"
id="com.nokia.sdt.uidesigner.gallery.GalleryView"/>
<view
allowMultiple="false"
category="com.nokia.carbide.cpp"
class="com.nokia.sdt.uidesigner.events.EventView"
icon="icons/events_16.png"
id="com.nokia.sdt.uidesigner.events.EventView"
name="Events"/>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="com.symbian.cdt.SymbianPerspective">
<view
id="com.nokia.sdt.uidesigner.gallery.GalleryView"
relationship="stack"
relative="org.eclipse.cdt.ui.CView"/>
<viewShortcut id="com.nokia.sdt.uidesigner.gallery.GalleryView"/>
<view
id="com.nokia.sdt.uidesigner.events.EventView"
relationship="stack"
relative="org.eclipse.ui.views.PropertySheet"/>
<viewShortcut id="com.nokia.sdt.uidesigner.events.EventView"/>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
category="com.nokia.carbide.cpp.project.ui.preferences.CarbidePreferencePage"
class="com.nokia.sdt.uidesigner.preferences.UIDesignerPreferences"
id="com.nokia.sdt.uidesigner.preferences.UIDesignerPreferences"
name="UI Designer"/>
</extension>
</plugin>