码迷,mamicode.com
首页 > 系统相关 > 详细

linux 编译静态库例子--from周立功文档

时间:2018-12-08 23:57:29      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:tin   文件   生成   stdio.h   tst   std   bsp   nbsp   静态   

/* hello1.c */
#include <stdio.h>
int hello1 (void)
{
printf("hello 1!\n");
return 0;
}
/* hello2.c */
#include <stdio.h>
int hello2 (void)
{
printf("hello 2!\n");
return 0;
}

vmuser@Linux-host:libhelloa$ gcc -c hello1.c hello2.c
生成2个.o文件

vmuser@Linux-host:libhellloa$ ar -r libhello.a hello1.o hello2.o
ar: creating libhello.a
生成libhello.a

调用如下

/* hello.c */

#include <stdio.h>
int hello2 (void)
{
  hello1();

       hello2();

gcc hello.c libhello.a

linux 编译静态库例子--from周立功文档

标签:tin   文件   生成   stdio.h   tst   std   bsp   nbsp   静态   

原文地址:https://www.cnblogs.com/dlutccj/p/10089562.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!