[Ubuntu] Message warning à la compilation
Bonjour,
sous Unbuntu 10.10
je compile ce programme
fpc hello.pas
Code:
1 2 3 4
| program hello;
begin
writeln('hello');
end. |
ce qui m'affiche
Citation:
Free Pascal Compiler version 2.4.0-2 [2010/03/06] for i386
Copyright (c) 1993-2009 by Florian Klaempfl
Target OS: Linux for i386
Compiling /home/jofr/Documents/hello.pas
Linking /home/jofr/Documents/hello
/usr/bin/ld: warning: link.res contains output sections; did you forget -T?
3 lines compiled, 0.1 sec
idem si je mets l'option Tlinux
fpc -Tlinux hello.pas
Ensuite si j'exécute ça fonctionne bien. Une idée ?