檢視編譯C程式中間檔案

jackie_gnu發表於2011-10-10

 gcc -Wall -save-temps print.c -o print

 

$ size

size - list section sizes and total size.

ESCRIPTION
       The GNU size utility lists the section sizes---and the total size---for each of the object or archive files objfile
       in its argument list.  By default, one line of output is generated for each object file or each module in an
       archive.

       objfile... are the object files to be examined.  If none are specified, the file "a.out" will be used.

 

$size print.o

   text    data     bss     dec     hex filename
     89       0       0      89      59 print.o

$size print

   text    data     bss     dec     hex filename
   1163     520      16    1699     6a3 print

相關文章