当我尝试使用 构建静态库时-flto
,出现未定义的引用错误:
图书馆.cpp:
#include <iostream>
void foo() {
std::cout << "Test!" << std::endl;
}
主.cpp:
void foo();
int main() {
foo();
return 0;
}
编译输出:
$ g++ -flto -c library.cpp
$ ar rcs library.a library.o
$ g++ -flto main.cpp library.a
/tmp/ccZIgxCY.ltrans0.ltrans.o: In function `main':
ccZIgxCY.ltrans0.o:(.text+0x5): undefined reference to `foo()'
collect2: error: ld returned 1 exit status
如果我链接library.o
而不是library.a
. 我错过了什么?这是 GCC 4.9.1 和 binutils 2.24。