CS:APP CH01.A Tour of Computer Systems
Posted GeekDengShuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CS:APP CH01.A Tour of Computer Systems相关的知识,希望对你有一定的参考价值。
程序语言到机器指令的过程
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的主要内容,如果未能解决你的问题,请参考以下文章
CHAPTER 1 ----- a tour of computer sysytems