llvm-capstone/cmake/Modules/SetPlatformToolchainTools.cmake
Petr Hosek 96e36048fd [CMake] Move the AIX archiver settings to a module
This allows their reuse across projects. The name of the module
is intentionally generic because we would like to move more platform
checks there.

Differential Revision: https://reviews.llvm.org/D115276
2022-01-05 11:46:30 -08:00

10 lines
412 B
CMake

get_property(languages GLOBAL PROPERTY ENABLED_LANGUAGES)
if(CMAKE_SYSTEM_NAME MATCHES "AIX")
foreach(lang IN LISTS languages)
set(CMAKE_${lang}_ARCHIVE_CREATE "<CMAKE_AR> -X32_64 qc <TARGET> <LINK_FLAGS> <OBJECTS>")
set(CMAKE_${lang}_ARCHIVE_APPEND "<CMAKE_AR> -X32_64 q <TARGET> <LINK_FLAGS> <OBJECTS>")
set(CMAKE_${lang}_ARCHIVE_FINISH "<CMAKE_RANLIB> -X32_64 <TARGET>")
endforeach()
endif()