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预处理器看作实际编译前指导编译器的一个文本替换。
编译 汇编 链接欢迎分享,转载请注明来源:内存溢出
评论列表(0条)