is there somebody, who can help me to configure the Regular Expressions for errors and warnings. Here is an sample of the compiler output.
It seems that the difference between error and warning lines is (Warning only).
All C compiler error messages have the following format::FE:MCM.C:3623: Illegal structure selector
:FE:MCM.C:3623: Lvalue required
:FE:MCM.C:3625: Illegal structure selector
:FE:MCM.C:3625: Lvalue required
:FE:MCM.C:3667: Illegal structure selector
:FE:MCM.C:3667: Lvalue required
:FE:MCM.C:3669: Illegal structure selector
:FE:MCM.C:3669: Lvalue required
:FE:MCM.C:3385: "bTmp4" never referenced (Warning only)
:FE:MCM.C:3385: "bTmp3" never referenced (Warning only)
:FE:MCM.C:3385: "bTmp2" never referenced (Warning only)
:FE:MCM.C:3385: "bTmp1" never referenced (Warning only)
:XX:name.c:nnn:message
XX identifies the compiler phase
PP = Pre-processor
FE = Front End
OP = Optimizer
BE = Back End
name.c is the name of the source file with the error.
nnn is the line number.
message is a description of the error.
Maybe I only need a regex starting with : and having not (Warning only) in the line for the ERROR regex. For the WARNING regex I think that I need the same regex but with the (Warning only) in the line...
Regards
Michael