Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] RE: Project setup for creating an ErrorParser

Title: Message
Hi,
 
Here is a sample of my plugin.xml to add a error parser for the SunCC compiler.
 
 <requires>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="org.eclipse.core.runtime"/>
      <import plugin="org.eclipse.cdt.core"/>
      <import plugin="org.eclipse.cdt.debug.core"/>
   </requires>
 
 <extension
       id="SunCCErrorParser"
       name="SunCC Error Parser"
       point="org.eclipse.cdt.core.ErrorParser">
 
   <errorparser
           class="ifx.eclipse.contrib.cdtparser.SunCCErrorParser">
   </errorparser>
 
</extension>
 
 
You can inspect the GccErrorParser class to find how implement the error parser and the error markers.
 
 
alexandre
 
-----Original Message-----
From: Claus Vagner Pedersen clped01 [mailto:cdt-dev-admin@xxxxxxxxxxx] On Behalf Of Claus Vagner Pedersen clped01
Sent: 26 November 2004 13:38
To: cdt-dev@xxxxxxxxxxx
Subject: Project setup for creating an ErrorParser

Can anyone guide me to how i must setup an Eclipse project so that i can make an error parser for the CDT. Which libs to include etc. for it to work.
 
Or a link to a tutorial on making an error parser, i have not been able to finde one.
 
Regards,
 
Claus Pedersen

Back to the top