码迷,mamicode.com
首页 > 编程语言 > 详细

linux下C语言编程动态库so的编写及调用

时间:2015-03-01 22:25:04      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:

//test_so.h
#include <stdio.h>
void test_a();
void test_b();
//test_a.c
#include "so_test.h"

void test_a()
{
	printf("this is in test_a...\n");
}

//test_b.c
#include "so_test.h"

void test_b()
{
	printf("this is in test_b...\n");
}

//test.c
#include "so_test.h"

int main()
{
	test_a();
	test_b();
	return 0;
}


编译步骤

gcc test_a.c test_b.c -fPIC -shared -o libtest.so

gcc test.c -L. -ltest -o test


./test

解决链接库问题:

#vim /etc/profile

LD_LIBRARY_PATH=/mnt/hgfs/Ubuntu_shared/so:$LD_LIBRARY_PATH

export LD_LIBRARY_PATH

# source /etc/profile


linux下C语言编程动态库so的编写及调用

标签:

原文地址:http://blog.csdn.net/waldmer/article/details/43983861

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