How to detect code compiled with LTO?
Asked Answered
M

1

12

Exist any way to detect if code is compiled with -flto?

Example is classic library or executable under Linux compiled with GCC (4.9.1), without debugging.

Moxie answered 12/10, 2014 at 7:37 Comment(0)
B
11

Considering that LTO information is stored in several ELF sections inside object files (see LTO file sections), you could try and see what readelf returns (as used for instance in this answer).

Look for .gnu.lto_.xxx entries.

Barrens answered 12/10, 2014 at 7:45 Comment(1)
For clang, look here: #51048914Harmless

© 2022 - 2024 — McMap. All rights reserved.