[Harbour] About Error Messages

2009-11-17 Thread Roberto Lopez
Hi All, Is there any way to get more accurate messages for 'undefined reference'? ie: I have a testapp called 'hello.prg'. At the line #8 I've added the following function call: IsNotHere() Since the function does not exist, I've got an error message at build:

Re: [Harbour] About Error Messages

2009-11-17 Thread Viktor Szakáts
Hi Roberto, Is there any way to get more accurate messages for 'undefined reference'? ie: I have a testapp called 'hello.prg'. At the line #8 I've added the following function call: IsNotHere() Since the function does not exist, I've got an error message at build:

Re: [Harbour] About Error Messages

2009-11-17 Thread Roberto Lopez
Viktor Szakáts wrote: I use very simple 'grep ISNOTHERE *' command to find out occurrences of such symbols in question. This works even inside binaries (lib/obj). This gives exactly the kind of output you're asking for. Thanks for the explanation. Assuming that the '.c' reported in the

Re: [Harbour] About Error Messages

2009-11-17 Thread Viktor Szakáts
I use very simple 'grep ISNOTHERE *' command to find out occurrences of such symbols in question. This works even inside binaries (lib/obj). This gives exactly the kind of output you're asking for. Thanks for the explanation. Assuming that the '.c' reported in the message has always the

Re: [Harbour] About Error Messages

2009-11-17 Thread Roberto Lopez
Viktor Szakáts wrote: This doesn't look doable to me, or at least such little more elegant output is very pricey. ... So overall I see not much chance this could make into hbmk2, or any similar tool. Ok. Thanks for your answer. Regards, Roberto.