内容来自: blog.csdn.net/liujiayu2/article/details/49864381
gcc命令行参数
- -shared
生成共享库 - -fPIC:
编译为不依赖于位置的代码,不用此选项的话编译后的代码是位置相关的所以动态载入时是通过代码拷贝的方式来满足不同进程的需要,而不能达到真正代码段共享的目的。 - -c(小写)
选项 -c 用来告诉编译器编译源代码但不要执行链接,输出结果为对象文件。 - -E
选项 -E 使 gcc 将源代码用编译预处理器处理后不再执行其他动作 - -S(大写)
生成的汇编语言依赖于编译器的目标平台 - -o(字母o,小写)
输出的文件名
将对象文件(.o文件)存储库(.so文件)中
程序 ar 配合参数 -r 创建一个新库 libsay.a 并将命令行中列出的对象文件插入。采用这种方法,如果库不存在的话, 参数 -r 将创建一个新的库,而如果库存在的话,将用新的模块替换原来的模块。
ar -r libsay.a sayhello.o say.o
静态连接共享库(.so文件)
这里我们用到4个文件,它们分别为:SoDemoTest.h、one.cpp、two.cpp、three.cpp。它们的内容如下:
- SoDemoTest.h
#pragma once
#include <iostream>
using namespace std;
void one();
void two();
void three();
- one.cpp
#include "SoDemoTest.h"
void one()
{
cout << "call one() function." << endl;
}
- two.cpp
#include "SoDemoTest.h"
void two()
{
cout << "call two() function." << endl;
}
- three.cpp
#include "SoDemoTest.h"
void three()
{
cout << "call three() function." << endl;
}
将这几个文件编译成动态库libtest.so。编译命令如下:
g++ one.cpp two.cpp three.cpp -fPIC -shared -o libtest.so
- main.cpp
#include "SoDemoTest.h"
int main()
{
one();
two();
three();
return 0;
}
将main.cpp与libtest.so链接成一个可执行文件main。命令如下:
g++ main.cpp -L./ -ltest -o main
其中
- -L./ 表示 链接的共享库在 当前目录找
- -ltest 表示连接 链接的共享库名称为test ,结合命名规则,会查找libtest.so
执行以下命令:
ldd main
测试可执行程序main是否已经链接到动态库libtest.so,如果列出了libtest.so,那么就说明正常链接了。
输出如下:
$ ldd main
linux-vdso.so.1 (0x00007ffcddacb000)
libtest.so => not found
libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007f7b2f382000)
libm.so.6 => /lib64/libm.so.6 (0x00007f7b2f23c000)
libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f7b2f221000)
libc.so.6 => /lib64/libc.so.6 (0x00007f7b2f055000)
/lib64/ld-linux-x86-64.so.2 (0x00007f7b2f583000)
$
上面的输出中虽然已经链接了libtest.so,但是却not found.
此时如果运行,会报错
$ ./main
./main: error while loading shared libraries: libtest.so: cannot open shared object file: No such file or directory
调用动态库的时候有几个问题会经常碰到,有时,明明已经将库的头文件所在目录通过 “-I” include进来了,库所在文件通过 “-L”参数引导,并指定了“-l”的库名,但通过ldd命令察看时,就是死活找不到你指定链接的so文件,这时你要作的就是通过修改 LD_LIBRARY_PATH或者/etc/ld.so.conf文件来指定动态库的目录。通常这样做就可以解决库无法找到的问题了。
如果简单测试,可以这样:
$ LD_LIBRARY_PATH=$(pwd) ./main
call one() function.
call two() function.
call three() function.
$
其中
- $(pwd)是获取当前目录,因为我的libtest.so文件就在当前目录中.
- LD_LIBRARY_PATH=$(pwd) 是定义了环境变量 LD_LIBRARY_PATH
动态调用共享库(.so文件)
add.c
int add(int a, int b)
{
return a + b;
}
使用命令编译为静态库:libadd_c.so
gcc -shared -fpic -lm -ldl -o libadd_c.so add.c
调用:
#include <cstdlib>
#include <iostream>
#include <dlfcn.h>
/*
动态加载库相关的dl*方法都在这个头文件中
RTLD_LAZY Relocations are performed at an implementation-defined
time.
RTLD_NOW Relocations are performed when the object is loaded.
RTLD_GLOBAL All symbols are available for relocation processing of
other modules.
RTLD_LOCAL All symbols are not made available for relocation
processing by other modules.
int dlclose(void *);
char *dlerror(void);
void *dlopen(const char *, int);
void *dlsym(void *restrict, const char *restrict);
*/
using namespace std;
int main()
{
int a = 0;
void *handle = dlopen("./libadd_c.so", RTLD_LAZY); //动态载入静态库
if(!handle)
{
cout << "open lib error" <<endl;
cout<<dlerror()<<endl;
return -1;
}
typedef int (*add_t)(int a, int b); //定义函数类型
add_t add = (add_t) dlsym(handle, "add"); //加载函数
if(!add)
{
cout<<dlerror()<<endl;
dlclose(handle);
return -1;
}
a = add(3, 4);
cout <<"a = " << a<<endl ;
dlclose(handle);
return 0;
}
编译:
g++ test.cpp -ldl -o test
运行
./test
编译时指定头文件和库文件查找路径
手工来写链接参数总是很麻烦的,还好很多库开发包提供了生成链接参数的程序,名字一般叫xxxx-config,一般放在/usr/bin目录下,比如gtk1.2的链接参数生成程序是gtk-config,执行gtk-config --libs就能得到以下输出"-L/usr/lib -L/usr/X11R6/lib -lgtk -lgdk -rdynamic-lgmodule -lglib -ldl -lXi -lXext -lX11 -lm",这就是编译一个gtk1.2程序所需的gtk链接参数,xxx-config除了--libs参数外还有一个参数是--cflags用来生成头文件包含目录的,也就是-I参数,在下面我们将会讲到。你可以试试执行gtk-config --libs --cflags,看看输出结果。 现在的问题就是怎样用这些输出结果了,最笨的方法就是复制粘贴或者照抄,聪明的办法是在编译命令行里加入这个
xxxx-config --libs --cflags,比如编译一个gtk程序:
gcc gtktest.c `gtk-config --libs --cflags`