1. 程式人生 > >CS:APP CH01.A Tour of Computer Systems

CS:APP CH01.A Tour of Computer Systems

purple 編程 文本文 linker pre 二進制文件 程序語言 TE 處理

程序語言到機器指令的過程

1.hello.c 源程序一個文本文件 經過預處理(pre-processer)成為 hello.i

2.hello.i  修改的源程序 經過編譯處理(compiler) 成為 hello.s

3.hello.s 匯編程序 經過匯編器(assembler) 成為 hello.o

4.hello.o  一個二進制文件+printf.o 經過鏈接器(linker) 成為可執行文件(executable) hello

CS:APP CH01.A Tour of Computer Systems