Browse Source

IBMClang: No thin LTO on AIX

AIX does not yet support thin LTO.
Nicole Rabjohn 2 years ago
parent
commit
79622d4a3e
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Modules/Compiler/IBMClang.cmake

+ 4 - 1
Modules/Compiler/IBMClang.cmake

@@ -43,7 +43,10 @@ macro(__compiler_ibmclang lang)
   set(_CMAKE_${lang}_IPO_SUPPORTED_BY_CMAKE YES)
   set(_CMAKE_${lang}_IPO_MAY_BE_SUPPORTED_BY_COMPILER YES)
 
-  set(_CMAKE_LTO_THIN TRUE)
+  # Thin LTO is not yet supported on AIX.
+  if(NOT (CMAKE_SYSTEM_NAME STREQUAL "AIX"))
+    set(_CMAKE_LTO_THIN TRUE)
+  endif()
 
   if(_CMAKE_LTO_THIN)
     set(CMAKE_${lang}_COMPILE_OPTIONS_IPO "-flto=thin")