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