Using -flto with autotools

995 Views Asked by At

Given a C++ program that uses GNU autotools, what's the easiest way to compile it with -flto (link time optimization)? My understanding is that it is customary on Unix for such optimization flags to be specified by the user or packager, not by the programmer.

1

There are 1 best solutions below

3
On BEST ANSWER

According to this post, the -flto flag needs to be passed as a compilation flag and as a linker flag, so:

./configure CXXFLAGS="-flto" LDFLAGS="-flto" ...

or possibly:

./configure CXXFLAGS="-flto" LDFLAGS="-Wc,-flto" ...

might work.