Noeud:Assembling, Noeud « Next »:, Noeud « Previous »:Compilation, Noeud « Up »:Pulling it Together



Assembling

Now we have the assembled sources, we can perform the penultimate stage and produce object files for each .s file.

gcc -DHAVE_CONFIG -I. -I.. -I../m4 -c main.s freeze.s stackovf.s temp.s

which results in the corresponding object files being produced:

     -rw-r--r--   1 rich     users       13108 Sep 30 18:59 freeze.o
     -rw-r--r--   1 rich     users       12796 Sep 30 18:59 main.o
     -rw-r--r--   1 rich     users        1528 Sep 30 18:59 stackovf.o
     -rw-r--r--   1 rich     users        1565 Sep 30 18:59 temp.o