当前位置:网站首页>GCC【6】- 编译的4个阶段
GCC【6】- 编译的4个阶段
2022-07-04 12:50:00 【大城市的小蜗牛】
前言
GCC 编译一共分4个阶段:预处理、编译、汇编、链接
gcc 指令一般格式
gcc 【选项】要编译的文件【选项】【输出文件】
选项 | 说明 |
---|---|
-E | 控制GCC编译器仅对源码做预处理操作 |
-S | 控制GCC编译器仅对指定文件处理之编译阶段 |
-c | 控制GCC编译器仅对制定文件处理至汇编阶段,并生成相应的目标文件 |
-o outfile | 指定输出文件的文件名 |
eg:下面是一段很简单的hello.c代码,以这段代码为例
#include <stdio.h>
#define NAME "mao"
void main()
{
printf("hello:%s\n",NAME);
}
一、预处理阶段
预处理
阶段主要工作是删除程序中所有的注释、处理以#
开头的命令。如:头文件的展开、宏定义的替换。
对于上面的代码#include <stdio.h>
表示引入头文件,在预处理阶段stdio.h
文件就会被加载到我的hello.c
中,而对于在代码中使用到的NAME
,就会被替换成该宏所定义的真实内容mao
,可以使用下面的命令执行预处理:生成.i
文件,linux 系统中预处理后所得文件的后缀名通常是.i
gcc -E hello.c -o hello.i
二、编译阶段
gcc
在编译阶段会对预处理后的代码进行各种检查(词法分析,语法分析,语义分析),来判断我们的代码是否符合规范,如果通过生成汇编代码(.s
结尾的文件)
注意:gcc -S
不是只能编译经过预处理后的.i
文件,它的含义是控制GCC编译器仅对指定文件处理至编译阶段
- 如果需要编译的文件是经过预处理后的
.i
文件,则GCC
编译器只需编译此文件。 - 如果需要编译的文件是
.c
或者.cpp
源文件,则GCC
编译器会对其进行预处理和编译(两步)。
gcc -S hello.i -o hello.s
三、汇编阶段
把.s
文件翻译成二进制.o
文件(目标文件)
注意:gcc -c
不是只能编处理.s
文件,它的涵义是控制GCC
编译器仅对指定文件处理至汇编阶段
- 如果指定文件为
.c
文件,则gcc -c
指令会对该文件执行预处理、编译、汇编 。 - 如果指定文件为经过预处理后的
.i
文件,则gcc -c
指令对该文件执行编译和汇编。 - 如果指定文件为经过编译后的文件,则
gcc -c
指令只对该文件执行汇编操作。
gcc -c hello.s -o hello.o
四、链接阶段
汇编阶段将代码编译成了二进制文件,还需要和系统其他组件(比如标准库、动态链接库等)结合起来才能正常运行,比如调用print函数打印,在预处理阶段也只是将“stdio.h”头文件中的申明引入进来,没有函数的实现,那怎么调用它的呢?
这就是链接的工作,链接之前都是对文件的处理,而链接是对多个文件进行打包的过程,他将所有目标文件以及系统组件组合成一个可执行文件。
gcc hello.o -o hello
边栏推荐
- 吃透Chisel语言.08.Chisel基础(五)——Wire、Reg和IO,以及如何理解Chisel生成硬件
- Understand chisel language thoroughly 06. Chisel Foundation (III) -- registers and counters
- Test evaluation of software testing
- Mongodb commonly used 28 query statements (forward)
- 392. Judgement subsequence
- Deming Lee listed on Shenzhen Stock Exchange: the market value is 3.1 billion, which is the husband and wife of Li Hu and Tian Hua
- 自主工业软件的创新与发展
- php 日志调试
- Variable promotion and function promotion in JS
- Unittest框架中引入TestFixture
猜你喜欢
MySQL version 8 installation Free Tutorial
Use the default route as the route to the Internet
MySQL 45 lecture - learn the actual combat notes of MySQL in Geek time 45 lecture - 06 | global lock and table lock_ Why are there so many obstacles in adding a field to the table
MySQL5免安装修改
2022 hoisting machinery command examination simulation 100 questions simulation examination platform operation
1200. 最小绝对差
Dgraph: large scale dynamic graph dataset
吃透Chisel语言.10.Chisel项目构建、运行和测试(二)——Chisel中生成Verilog代码&Chisel开发流程
基于PaddleX的智能零售柜商品识别
2022危险化学品经营单位主要负责人练习题及模拟考试
随机推荐
Qt如何实现打包,实现EXE分享
[matlab] summary of conv, filter, conv2, Filter2 and imfilter convolution functions
英视睿达冲刺科创板:年营收4.5亿 拟募资9.79亿
Golang uses JSON unmarshal number to interface{} number to become float64 type (turn)
2022g3 boiler water treatment examination question simulation examination question bank and simulation examination
Whether the loyalty agreement has legal effect
markdown 语法之字体标红
Install Trinity and solve error reporting
go vendor 项目迁移到 mod 项目
Programmer anxiety
Basic mode of service mesh
吃透Chisel语言.08.Chisel基础(五)——Wire、Reg和IO,以及如何理解Chisel生成硬件
Fs7867s is a voltage detection chip used for power supply voltage monitoring of digital system
FS7867S是一款应用于数字系统供电电源电压监控的电压检测芯片
2022 Shandong Province safety officer C certificate examination question bank and online simulation examination
Byte interview algorithm question
R语言使用lattice包中的bwplot函数可视化箱图(box plot)、par.settings参数自定义主题模式
Automatic filling of database public fields
sharding key type not supported
Assertion of unittest framework