作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何改变用gcc编译的C程序的入口点?
就像下面的代码一样
#include<stdio.h>
int entry() //entry is the entry point instead of main
{
return 0;
}
最佳答案
这是一个链接器设置:
-Wl,-eentry
-Wl,...
将参数传递给链接器,链接器使用-e
参数来设置入口函数
关于c - 如何用gcc改变C程序的入口点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7494244/
我是一名优秀的程序员,十分优秀!