3

我正在尝试构建一个 C 程序的静态可执行文件,它需要 Postgresql libecpg-dev 包中的以下库:libecpg、libpq 和 libpgtypes。静态库 libecpg.a、libpq.a、libpgtypes.a 都位于与其动态版本 /usr/lib 相同的位置。无论如何,我已经尝试将 -L 选项添加为他们的路径,但我得到了相同的结果。

我的可执行文件需要是静态的,以便二进制文件可以移植,这样用户就不必将库安装到他们的系统上来使用它。当我对动态库使用以下命令时,程序构建良好:(我正在使用的一些 Postgresql 函数必须包含 -I 目录)

 gcc main.o -lecpg -lpq -lpgtypes -I/usr/include/postgresql -o program_name

当我尝试链接到静态库时,我正在使用以下命令:

gcc -static main.o -lecpg -lpq -lpgtypes -I/usr/include/postgresql -o program_name 

然而,编译器给了我一长串“未定义的引用”错误作为输出。有这么多,但这里是一个小样本:

/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libecpg.a(descriptor.o):
In function `get_descriptors':
(.text+0xc3): undefined reference to `pthread_once'
 /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libecpg.a(descriptor.o): In function `ECPGdeallocate_desc':
(.text+0x2c6): undefined reference to `pthread_setspecific'
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libecpg.a(descriptor.o): In function `ECPGallocate_desc':
(.text+0x376): undefined reference to `pthread_setspecific'
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../../lib/libecpg.a(descriptor.o): In function `get_descriptors':
(.text+0xd2): undefined reference to `pthread_getspecific'

当我按如下方式更改顺序时:

gcc -I/usr/include/postgresql -static -lecpg -lpq -lpgtypes -o program_name main.o

编译器输出如下所示(再一次,只是一个小样本):

main.c:(.text+0x5c6): undefined reference to `ECPGconnect'
main.c:(.text+0x83e): undefined reference to `ECPGdo'
main.c:(.text+0x843): undefined reference to `ECPGget_sqlca'
main.c:(.text+0x85c): undefined reference to `ECPGdisconnect'
main.c:(.text+0x87c): undefined reference to `ECPGget_sqlca'

我已经尝试使用 -I 选项(以及所有其他选项),但似乎没有任何效果。

4

2 回答 2

1

我认为你不能再在现代 Linux 发行版中创建一个完全静态的非平凡可执行文件了。但是你可以静态地包含一些特定的库

于 2013-06-26T21:24:40.017 回答
0

试试这样:

 gcc main.o /usr/include/postgresql/libecpg.a /usr/include/postgresql/libecpg.a /usr/include/postgresql/libpq.a /usr/include/postgresql/libpgtypes.a -o program_name
于 2013-06-26T21:26:07.237 回答