When I try to build static libraries with -flto, I get undefined reference errors:
library.cpp:
#include <iostream>  void foo() {   std::cout << "Test!" << std::endl; }   main.cpp:
void foo();  int main() {   foo();   return 0; }   Compilation output:
$ 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   It works fine if I link with library.o instead of library.a.  What am I missing?  This is with GCC 4.9.1 and binutils 2.24.
In computer science, a static library or statically-linked library is a set of routines, external functions and variables which are resolved in a caller at compile-time and copied into a target application by a compiler, linker, or binder, producing an object file and a stand-alone executable.
A static library which is a statically linked library is a set of routines, external functions and variables that are resolved in a caller called compile-time and copied into a target application by a compiler. Any static library function can call a function or procedure in another static library.
A static library is basically a set of object files that were copied into a single file. This single file is the static library. The static file is created with the archiver (ar). First, calc_mean.c is turned into an object file: gcc -c calc_mean.c -o calc_mean.o.
The answer, as I found out from this post by GCC developer Honza Hubička, is to use the gcc-ar wrapper instead of ar by itself:
$ gcc-ar rcs library.a library.o   This invokes ar with the right plugin arguments, in my case were
--plugin /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.1/liblto_plugin.so 
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With