On Thursday 07 October 2004 19:29, Roberto Leiva M wrote: > si yo utilizo lo sgte: > > gcc -o circulo circulo.c > > se crea el ejecutable circulo. Internamente el interprete genera el archivo > circulo.o pero al terminar el proceso lo elimina. es posible crear el > ejecutable y el objeto en la misma linea. >
man gcc retorna: -save-temps Store the usual ``temporary'' intermediate files permanently; place them in the current directory and name them based on the source file. Thus, compiling foo.c with -c -save-temps would produce files foo.i and foo.s, as well as foo.o. This creates a preprocessed foo.i output file even though the compiler now normally uses an integrated preprocessor.

