Romain Chantereau wrote:
I invoke that gpc -O --automake supp.pas -o supp it make that ! ==> supp.pas:5: module `crt' could not be compiled
Maybe this is only the last error message of a longer sequence? It is possible that `gpc' failed to compile the `crt' unit on your system because it did not find the C compiler.
If this is the case you can recover from this by manually compiling `crtc.c':
cd /usr/lib/gcc-lib/i386-redhat-linux/2.8.1 gcc -c -O crtc.c
And I have with gpc -v =>> Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.8.1/specs gpc version 19990118, based on gcc-2.8.1
And `/usr/lib/gcc-lib/i386-redhat-linux/2.8.1/units/crt.pas' is in place?
If the above does not solve your problem, please show me a little more complete output of:
gpc -O --automake supp.pas -o supp -v
Good luck,
Peter