我使用静态库,让我们假设cityhash,我已经构建并安装到/ usr / local / lib。我有一个使用cityhash的文件foo.cxx,例如:
// foo.cxx
u64 get_hash(const std::string &s) {
return CityHash64(s.data(), s.size());
}
我从中构建一个静态库:
gcc -c foo.cxx => foo.o
ar rcs libfoo.a foo.a => libfoo.a
我有另一个文件bar.cxx,它使用foo.cxx和间接的CityHash函数。我编译它,并链接libcityhash.a和libfoo.a,如下所示:
gcc -c bar.cxx => bar.o
gcc -L. -o bar bar.o -lcityhash -lfoo
但是这不起作用,链接器抱怨CityHash64是未定义的引用。怎么了?当我不创建静态库libfoo.a
时,一切正常。
答案 0 :(得分:2)
看到这个。您需要编写链接器参数-lfoo -lcityhash
。需要符号的库应该在提供符号的库之前。
Why does the order in which libraries are linked sometimes cause errors in GCC?