赞
踩
在linux平台下,要实现函数的封装,一般采用的是so动态库的形式
实现了函数的封装就意味着实现过程的隐藏
可以实现跨平台和跨语言的使用
int sum(int a, int b)
{
return a + b;
}
-fPIC
选项,生成位置无关代码(由于动态库在编译时候无法知道偏移地址),同时添加-shared
选项,生成so共享库gcc -c test.c -fPIC -o test.o
gcc -shared -o libtest.so test.o
注:在linux和unix中的so文件,其扩展名必须是so,文件前缀也必须是lib。
#ifndef __SONAME_H
#define __SONAME_H
int sum(int a, int b);
#endif
#include <stdio.h>
#include "soname.h"
int main()
{
printf("sum = %d", sum(1,2));
return 0;
}
-L
(代表在当前目录下查找so库),-l文件名(此时的文件名不包括前缀和后缀)gcc –o test –L. –ltest main.o
cd
vi .bash_profile
export LD_LIBRARY_PATH = $LD_LIBRARY_PATH:.
. .bash_profile
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。