Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-dev] Error parsers

Thanks Chad,

I'll look into that. But I'll probably be back with questions as I'm still just scratching
the eclipse surface... ;)

/R

> -----Original Message-----
> From: cebarne2@xxxxxxxxxxxxxxxxxxx 
> [mailto:cebarne2@xxxxxxxxxxxxxxxxxxx]
> Sent: Monday, January 31, 2005 14:24
> To: cdt-dev@xxxxxxxxxxx
> Subject: Re: [cdt-dev] Error parsers
> 
> 
> Rob,
> 
> Take a look at the CDT source and you'll see how their own 
> error parsers
> are extending the errorParsers extension point:
> 
>    <extension
>          id="MakeErrorParser"
>          name="%CDTGNUMakeErrorParser.name"
>          point="org.eclipse.cdt.core.ErrorParser">
>       <errorparser
>             
> class="org.eclipse.cdt.internal.errorparsers.MakeErrorParser">
>       </errorparser>
>    </extension>
> 
> And, from there it seems to be as simple as creating a class 
> (as used in
> "class=" above) that extends IErrorParser:
> 
> public class MakeErrorParser implements IErrorParser
> 
> -Chad
> 
> cdt-dev-admin@xxxxxxxxxxx wrote on 01/30/2005 03:14:56 PM:
> 
> > Hi,
> >
> > I want to create a plug-in for SDCC (http://sdcc.sourceforge.net/),
> > however I suspect the compiler/linker outputs
> > will not be recognizable for the standard error parsers. I haven't
> > seen any documenation to make my own error parser,
> > would appreciate info on this topic.
> >
> > TIA
> > /Rob
> >
> 
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/cdt-dev
> 


Back to the top