From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Martin Kalen" To: Subject: Re: Need help Date: Sun, 01 Jul 2001 22:30:00 -0000 Message-id: <02b501c102b8$1502d630$addf24cb@pc13> X-SW-Source: 2001-07/msg00012.html ----- Original Message ----- From: "Jules FOSSO" > What command line(s) should i give on the bash in oder to have an > executable programm? I think what you are looking for is the "-o [name of executable]" option, eg: # gcc -o hello hello.c or: # gcc -c module.c # gcc -o hello hello.c module.o If you do not specify the -o option you would end up with an executable named "a.out". See "man gcc" for more information on these flags. Regards, Martin.