diff options
author | Brad King <brad.king@kitware.com> | 2022-03-16 15:09:38 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-03-16 15:09:45 (GMT) |
commit | 768d0701806988000968d318b0c0a29986a3b09f (patch) | |
tree | 3cbb31399cc96473a4d0e51354c8a9bef882038e /Modules | |
parent | ef0cdcf050fa7e15f5c5de0d67b91c251603d3ec (diff) | |
parent | fee36b7a784543c3d89e2ef7c531e6892116f237 (diff) | |
download | CMake-768d0701806988000968d318b0c0a29986a3b09f.zip CMake-768d0701806988000968d318b0c0a29986a3b09f.tar.gz CMake-768d0701806988000968d318b0c0a29986a3b09f.tar.bz2 |
Merge topic 'binutils-llvm-ar-apple'
fee36b7a78 BinUtils: Restore llvm-ar fallback on Apple platforms
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7077
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeFindBinUtils.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Modules/CMakeFindBinUtils.cmake b/Modules/CMakeFindBinUtils.cmake index 16d3106..a6bd0d1 100644 --- a/Modules/CMakeFindBinUtils.cmake +++ b/Modules/CMakeFindBinUtils.cmake @@ -173,8 +173,13 @@ else() else() list(PREPEND _CMAKE_LINKER_NAMES "ld.lld") endif() - if(NOT APPLE) + if(APPLE) # llvm-ar does not generate a symbol table that the Apple ld64 linker accepts. + # FIXME(#23333): We still need to consider 'llvm-ar' as a fallback because + # the 'APPLE' definition may be based on the host in this context, and a + # cross-compiling toolchain may not have 'ar'. + list(APPEND _CMAKE_AR_NAMES "llvm-ar") + else() list(PREPEND _CMAKE_AR_NAMES "llvm-ar") endif() list(PREPEND _CMAKE_RANLIB_NAMES "llvm-ranlib") |