Chinaunix首页 | 论坛 | 博客
  • 博客访问: 46200
  • 博文数量: 17
  • 博客积分: 455
  • 博客等级: 下士
  • 技术积分: 171
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-07 21:27
文章分类

全部博文(17)

文章存档

2013年(8)

2012年(9)

我的朋友

分类: 嵌入式

2013-06-29 22:06:05

test_a.c

点击(此处)折叠或打开

  1. #include <stdio.h>

  2. void test_a(void)
  3. {
  4.     printf("##### func = %s\n", __FUNCTION__);

  5.     return;
  6. }
test_b.c

点击(此处)折叠或打开

  1. #include <stdio.h>

  2. void test_b(void)
  3. {
  4.     printf("##### func = %s\n", __FUNCTION__);

  5.     return;
  6. }
test_c.c

点击(此处)折叠或打开

  1. #include <stdio.h>

  2. void test_c(void)
  3. {
  4.     printf("##### func = %s\n", __FUNCTION__);

  5.     return;
  6. }

制作动态库libtest.so
# gcc test_a.c test_b.c test_c.c -fPIC -shared -o libtest.so

test.h

点击(此处)折叠或打开

  1. #ifndef __TEST_H__
  2. #define __TEST_H__

  3. extern void test_a(void);
  4. extern void test_b(void);
  5. extern void test_c(void);

  6. #endif
main.c

点击(此处)折叠或打开

  1. #include <stdio.h>
  2. #include "test.h"

  3. int main(int argc, char **argv)
  4. {
  5.     test_a();
  6.     test_b();
  7.     test_c();

  8.     return 0;
  9. }
编译可执行文件
#gcc main.c -L./ -ltest -o test

制作静态库
#ar rs test_a.o test_b.o test_c.o
#gcc main.c -L./ -ltest -o test


阅读(803) | 评论(0) | 转发(0) |
0

上一篇:camera摄像原理之一:光感应 .

下一篇:没有了

给主人留下些什么吧!~~