如何将函数打包成静态库并调用呢?
1.将要打包的函数放入c文件:
watchdog.c:
struct tq_wdg* tq_init_wdg(char* name, int sec){
......
}
int tq_wdg_loop(struct tq_wdg* wdg, int sec)
{
......
}
void tq_free_wdg(struct tq_wdg* wdg)
{
......
}
2.将C文件交叉编译成O文件:
arm-linux-gcc -c watchdog.c 生产watchdog.o 文件
3.用O文件生成静态库:
ar -crv libwatchdog.a watchdog.o 生成静态库"libwatchdog.a"
4.编写main.c,里面调用库函数:
char* name = "/dev/watchdog";
struct tq_wdg *mydog;
void main()
{
mydog=tq_init_wdg(name,10); //初始化并设置超时时间为10s
while( 1)
{
tq_wdg_loop(mydog,0);
// tq_free_wdg(mydog);
sleep(6);
}
}
5.链接库文件编译生成执行文件:
arm-linux-gcc main.c -o main_watchdog -L. -lwatchdog 将静态库链到main.c文件编译
生成目标文件main_watchdog,注意不要漏了 -L后面的“.”