From: Peter Gerwinski peter@gerwinski.de To: grx@gnu.de Subject: Re: grx-2.3.1 Date: Tue, 11 Jul 2000 11:24:17 +0200
Nathalie Jarosz wrote:
gpc -L /usr/local/src/grx/lib/unix --automake \ -o fgraph fgraph.p -lgrx20X -lX11
Even with the right path, the compilation failed... libgrx20X.a*really exists in this path...
Okay, please try this:
gpc --automake -o fgraph fgraph.p /usr/local/src/grx/lib/unix/libgrx20.a -lX11
the library is still not found... Is it normal that the message says:"ld: fatal: library -llibgrx20X: not found" instead of "-libgrx20X"?...
Nathalie
________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
Nathalie Jarosz wrote:
gpc --automake -o fgraph fgraph.p /usr/local/src/grx/lib/unix/libgrx20.a -lX11
the library is still not found... Is it normal that the message says:"ld: fatal: library -llibgrx20X: not found" instead of "-libgrx20X"?...
I suspect that the error is somewhere else.
Have you inserted some {$L foo} directive anywhere? Maybe you wrote
{$L -llibgrx20X} (* WRONG *)
instead of
{$L grx20X} (* correct *) or {$L libgrx20X.a} (* also correct, but does not search -L path *) ?
Please check,
Peter