问题描述
- gcc的编译选项有顺序吗?
- 我在写一个测试动态链接库的时候,碰到一个问题。比如,现在我的目录是这个样子的:
.
├── libtest.so
├── main.c
├── main.o
├── test.c
└── test.hmain.c
#include
#include ""test.h""int main()
{
print_hello();return 0;
}其中,libtest.so是test.c和test.h编译出来的动态链接库。然后我需要再main.c中引用这个库,main.o是已经编译
出来的对象,然后我用了下面的语句:
gcc -L. -ltest -o main main.o
但是报错:main.o: In functionmain':
print_hello'
main.c:(.text+0x7): undefined reference to
collect2: error: ld returned 1 exit statusprint_hello是libtest.so提供的接口,为什么会找不到呢?明明已经链接了。
于是,我换了一下gcc的编译选项的顺序,这样写:
gcc main.o -o main -L. -ltest
把链接libtest.so放在后面就可以了,难道gcc的编译选项是有顺序要求的吗?
官方也没有说这些啊,网上也没有相关的问题
解决方案
会有一些顺序,可以看官方文档
解决方案二:
有顺序,上层的要放在前面,越靠底层越往后放
时间: 2024-11-18 10:05:22