Bonjour à tous

J'ai codeblocks sous windaube 10 qui marche sans pb, (pointeurs structures etc..)
J'ai installé antix (debian allégé) pour tâter du linux et j'ai tente de programmer le fameux Hello word! avec Geany:

#include <stdio.h>

int main (int argc, **char argv)
{
printf("Hello word!");
return 0;
}


Mais la, 1er pb j'ai du indiquer le chemin des *.h qui se trouvaient dans /usr/lib/syslinux/com32/include
Bon, la compil a bien marché!
Mais je n'arrive pas à "construire" (F9)

Il me sort ces erreurs:

/usr/bin/ld: cannot find,crt1.o: No such file or directory
/usr/bin/ld: cannot find,crti.o: No such file or directory
/usr/bin/ld: cannot find -lc
/usr/bin/ld: cannot find ctrn.o: No such file or directory
Compilation échouée.


Quelqu'un pourrait m'aider?
Mille merci d'avance
jeanlandes