Guillaume Rousse wrote:
Everything now seems to be fine, however, CRT extension doesn't work -( [guillaume@silbermann 301]$ cat test1.pas PROGRAM Test;
BEGIN WRITELN('Hello World'); END. [guillaume@silbermann 301]$ cat test2.pas PROGRAM Test; USES CRT;
BEGIN WRITELN('Hello World'); END. [guillaume@silbermann 301]$ gpc --automake test1.pas -o test1 [guillaume@silbermann 301]$ ./test1 Hello World [guillaume@silbermann 301]$ gpc --automake test2.pas -o test2 [guillaume@silbermann 301]$ ./test2 (nothing)
Maybe this is a silly idea, but... Did you run the example program in Konsole? If so, you can't expect it to do anything visible.
Emil Jerabek