Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] compiler message parser module for greenhills ccmips

Hello - a newbie question.

I'm trying to locate some compiler compile error message parser module,
or maybe write one if it doesn't exist yet. this is for green-hills
"ccmips" compiler. I'm still being a total stranger to the eclipse
environment.
if any pointer was available how to go about this, it's very much
appreciated.

tia,
-kenji


--(a message typically look like this)--
> ccmips -c some_error.c 
"some_error.c", line 3: error #20: identifier "i" is undefined
      return i;
             ^

> cat some_error.c 
int some_error(void)
{
    return i;
}
--


Back to the top