Determining C executable name Determining C executable name c c

Determining C executable name


Most C compilers provide the -o option for this, such as:

gcc -o gentext gentext.ccc  -o mainprog -Llib -lmymath firstbit.c secondbit.oxlc -o coredump coredump.c


-ofilename will make filename instead of a.out.


According to the manual:

-o <file>  Place the output into <file>