我无法从静态库生成共享对象。虽然我知道还有其他选择,但我现在对为什么这不起作用以及如何使它起作用感到困扰(而不是卡住)。
下面是我正在使用的非常简单的源代码。
get_zero.c
#include "get_zero.h"
int
get_zero(void)
{
return 0;
}
get_zero.h
int get_zero(void);
主程序
#include <stdio.h>
#include <string.h>
#include "get_zero.h"
int
main(void)
{
return get_zero();
}
目标是使用 libget_zero_static 和 libget_zero_shared 创建两个功能相同的应用程序。
这是我的编译/链接步骤:
gcc -c -fPIC get_zero.c
ar cr libget_zero_static.a get_zero.o
gcc -shared -o libget_zero_shared.so -L. -Wl,--whole-archive -lget_zero_static -Wl,-no--whole-archive
这是我得到的错误:
/usr/bin/ld: cannot find -lgcc_s
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libc.a(init-first.o): relocation R_X86_64_32 against `_dl_starting_up' can not be used when making a shared object; recompile with -fPIC
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libc.a(init-first.o): could not read symbols: Bad value
collect2: ld returned 1 exit status
这是在 64 位 Ubuntu 系统上。
我在这里阅读了有关整个存档选项的信息,似乎这个问题应该已经消除了我所有的障碍。 如何从静态库创建共享对象文件。