From: Peter Gerwinski peter@gerwinski.de To: grx@gnu.de Subject: Re: grx-2.3.1 Date: Tue, 11 Jul 2000 10:47:35 +0200
Nathalie Jarosz wrote:
gpc --automake -o fgraph fgraph.p -lgrx20X -lX11 ld: fatal: library -llibgrx20X: not found ld: fatal: File processing errors. No output written to fgraph collect2: ld returned 1 exit status
I have corrected in grx.pas "unit GRX20" in "unit GRX"
Yes, that was necessary.
but the error message is still the same...
This means that GPC cannot locate your `libgrx20X.a'. Where is it installed on your computer? If it is, say, in `/usr/local/src/grx/lib/unix/' then your command line reads:
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...
Nathalie ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
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
Peter