目录
#include<stdio.h>
#include<math.h>
int gg(int a,int b)
{
return sqrt(a*a+b*b);
}
gcc -c tsys.c -Wall
ar crs libtsys.a tsys.o
#include<stdio.h>
int gg(int,int);
int main()
{
printf("%d\n",gg(3,4));
return 0;
}
调用库tsys和math
gcc test1.c -o test1 -L. -ltsys -lm
./test1
(1)
#include <stdio.h>
void hello(void)
{
printf("hello world!\n");
return;
}
(2)
#include <stdio.h>
void bye(void)
{
printf("see you again\n");
return;
}
gcc -c -fPIC hello.c bye.c -Wall
gcc -shared -o libtest.so hello.o bye.o
(库名:test)
#include<stdio.h>
void hello(void);
void bye(void);
int main()
{
hello();
bye();
return 0;
}
gcc testlib.c -o testlib
(1)把库拷贝到/usr/lib和/lib下,但不建议使用
(2)添加环境变量LD_RARY_PATH,添加库的路径
(3)添加/etc/ld.so.comf.d/*.conf文件,执行ldconfig刷新
实例:
(2)添加环境变量举例
1、export LD_LIBRARY_PATH(添加环境变量)
2、export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/linux/lib1(lib1为存放库*.so的目录)(赋予变量路径)
3、gcc testlib.c -o testlib -L /home/linux/lib1 -ltest(进行编译主函数c文件,调用设定路径下的名为test库)
4、注意使用添加环境变量方法时,若重新打开一个终端,就要对环境变量再次赋予路径
5、该方法并不方便
(3)第三种方法
1、到/etc/ld.so.comf.d/中新建一个.conf文件,如my.conf
2、编辑my.conf文件,写入/home/linux/lib1
3、刷新,运行 sudo ldconfig
4、完成,随时都可以运行./testlib 不用多次编辑环境变量
5、比较方便
./testlib