C++ 编译过程

C++ 编译过程,第1张

C++ 编译过程 编译器 :

gcc:8.1.0 配套 gdb 8.1

mingw

书籍网站:

编译原理_中国大学MOOC(慕课) (icourse163.org)

教授人美课好

《深入分析GCC》这本书怎么样? - 知乎 (zhihu.com)

据这位博主说可以看他写的深入分析gcc 和编译系统透视。

斯坦福的课(编译原理基于龙书):

CS107 Compiling C Programs with GCC (stanford.edu)

CS143: Compilers (stanford.edu)

.....

这位博主的介绍斯坦福大学编译原理课程质量怎么样? - 知乎 (zhihu.com)

MIT的课(基于虎书):

11 Compilers | Computation Structures - MIT …

CS神校CMU的东西应该也很不错,再一个就是国内中科大南大好像都有这方面的公开课在b站上。
 

预处理

指令 : g++ -E xxx.c -o xxx.i  |||||    g++ -E  xxx.c > any leagl string;

Top (The C Preprocessor) (gnu.org)

gcc 官网cpp manual开头就能看到preprocessor

C - Preprocessors (tutorialspoint.com)

The C Preprocessor is not a part of the compiler, but is a separate step in the compilation process. In simple terms, a C Preprocessor is just a text substitution tool and it instructs the compiler to do required pre-processing before the actual compilation.

按该网站所述,c预处理器并不属于编译器的一部分,而是独立的编译步骤C预处理器看作实际编译前指导编译器的一个文本替换。

编译 汇编 链接

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5520800.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存