当前位置:网站首页>gcc 编译选项
gcc 编译选项
2022-07-06 09:17:00 【csdndulala】
-fno-builtin 不使用内建函数
-ffunction-sections
-fdata-sections
需求:有些函数或变量没有使用时不需要编入程序
GCC链接操作是以section作为最小的处理单元,只要一个section中的某个符号被引用,该section就会被加入到可执行程序中去。因此,GCC在编译时可以使用 -ffunction-sections和 -fdata-sections 将每个函数或符号创建为一个sections,其中每个sections名与function或data名保持一致。而在链接阶段, -Wl,–gc-sections 指示链接器去掉不用的section(其中-Wl, 表示后面的参数 -gc-sections 传递给链接器),这样就能减少最终的可执行程序的大小了。
我们常常使用下面的配置启用这个功能:
CFLAGS += -ffunction-sections -fdata-sections
LDFLAGS += -Wl,–gc-sections-Wall 发现程序中一系列的常见错误警告
-D 定义宏
-DMACRO 以字符串“1”定义 MACRO 宏。
-DMACRO=DEFN 以字符串“DEFN”定义 MACRO 宏。-O 优化登记
O0 -->> O1 -->> O2 -->>Os–>> O3
-O0表示没有优化,-O1为缺省值,-O3优化级别最高
https://blog.csdn.net/zzhongcy/article/details/91445924mabi 指定数据模型和浮点参数传递规则
https://blog.csdn.net/zoomdy/article/details/79353313-nostartfiles 连接的时候不使用标准系统的启动文件
https://my.oschina.net/saly/blog/130920-T,–script=:使用scriptfile作为链接器脚本。此脚本将替换ld的默认链接器脚本(而不是添加到其中),因此脚本必须指定输出文件所需的所有内容。如果当前目录中不存在脚本文件,“ld”会在-L选项指定的目录中查找
[email protected] 目标文件,$^ 所有的依赖文件,$< 第一个依赖文件
举例 gcc -o main main.o
等价 gcc -o [email protected] $^-lm选项告诉编译器,我们程序中用到的数学函数要到libm.so库文件里找
(例如printf)位于libc.so库文件中,使用libc.so中的库函数在编译时不需要加-lc选项,因为这个选项是gcc的默认选项
边栏推荐
- Missing value filling in data analysis (focus on multiple interpolation method, miseforest)
- Linux yum安装MySQL
- Priority inversion and deadlock
- Detailed explanation of Union [C language]
- MATLAB学习和实战 随手记
- uCOS-III 的特点、任务状态、启动
- C语言,log打印文件名、函数名、行号、日期时间
- Variable star user module
- Mall project -- day09 -- order module
- open-mmlab labelImg mmdetection
猜你喜欢
Togglebutton realizes the effect of switching lights
PyTorch四种常用优化器测试
STM32 如何定位导致发生 hard fault 的代码段
共用体(union)详解【C语言】
open-mmlab labelImg mmdetection
Wangeditor rich text reference and table usage
Comparison of solutions of Qualcomm & MTK & Kirin mobile platform USB3.0
Gallery's image browsing and component learning
RT-Thread API参考手册
Implementation scheme of distributed transaction
随机推荐
物联网系统框架学习
Word排版(小计)
C语言函数之可变参数原理:va_start、va_arg及va_end
共用体(union)详解【C语言】
优先级反转与死锁
There are three iPhone se 2022 models in the Eurasian Economic Commission database
Matlab learning and actual combat notes
锂电池基础知识
选择法排序与冒泡法排序【C语言】
Mysql的索引实现之B树和B+树
Reading notes of difficult career creation
Kaggle竞赛-Two Sigma Connect: Rental Listing Inquiries(XGBoost)
Unit test - unittest framework
Composition des mots (sous - total)
电商数据分析--薪资预测(线性回归)
Detailed explanation of 5g working principle (explanation & illustration)
Word排版(小計)
I2C bus timing explanation
Word typesetting (subtotal)
[Kerberos] deeply understand the Kerberos ticket life cycle