实验环境:
ubuntu 14.04 i386
实验代码:
#include <stdio.h>
#include <stdlib.h>
int teststart(void)
{
printf("hello world\n");
exit(0);
}
实验目的:
实现teststart 代替main函数作为函数执行入口点。
实验过程:
1.使用gcc -o a.out -e -nostartfiles teststart test.c
编译。结果出错如下:
gcc: error: teststart: No such file or directory。
经过排查,使用-nostartfiles后面必须跟随动态链接库。
2. 使用gcc -o a.out -nostartfiles -e teststart test.c
编译。通过,运行结果如下:
hello world
实验注意事项:
1. 在编译时gcc指定参数-e 必须在-nostartfiles之后。
2. 在指定的函数入口函数实现退出里面必须使用exit()函数退出,否则会找不到退出点导致函数执行出现coredump。