Skip to content

Commit

Permalink
Fix LTO support for cross-compilation.
Browse files Browse the repository at this point in the history
When cross-compiling, the ar and ranlib to be used for LTO are prefixed
by the cross-tuple. gcc-ar and gcc-ranlib may not exist. Cfr.
http://autobuild.buildroot.net/results/f3c/f3c48da3a9706cd366c0e0a96c3cd0ff959f2a78/

Therefore, search for an appropriate lto-ar and lto-ranlib before
enabling LTO.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
  • Loading branch information
arnout committed Aug 27, 2016
1 parent 86f3c44 commit 21113e0
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions CMakeLists.txt
Expand Up @@ -39,9 +39,15 @@ if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG)
CHECK_CXX_COMPILER_FLAG("-flto" HAS_LTO_FLAG)

if (HAS_LTO_FLAG)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto")
set(CMAKE_AR gcc-ar)
set(CMAKE_RANLIB gcc-ranlib)
find_program(LTO_AR NAMES "${CMAKE_C_COMPILER}-ar" gcc-ar)
find_program(LTO_RANLIB NAMES "${CMAKE_C_COMPILER}-ranlib" gcc-ranlib)
if (LTO_AR AND LTO_RANLIB)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto")
set(CMAKE_AR "${LTO_AR}")
set(CMAKE_RANLIB "${LTO_RANLIB}")
else()
message(STATUS "gcc-ar or gcc-ranlib not found, disabling LTO")
endif()
endif()
endif()

Expand Down

0 comments on commit 21113e0

Please sign in to comment.