2021-07-25 09:55:31 +00:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
|
|
|
|
|
|
|
# This module is shared by multiple languages; use include blocker.
|
2023-01-10 14:42:48 +00:00
|
|
|
if(__AIX_COMPILER_IBMCLANG)
|
2021-07-25 09:55:31 +00:00
|
|
|
return()
|
|
|
|
endif()
|
2023-01-10 14:42:48 +00:00
|
|
|
set(__AIX_COMPILER_IBMCLANG 1)
|
2021-07-25 09:55:31 +00:00
|
|
|
|
2023-01-10 14:42:48 +00:00
|
|
|
include(Platform/AIX-GNU)
|
2021-07-25 09:55:31 +00:00
|
|
|
|
2023-01-10 14:42:48 +00:00
|
|
|
macro(__aix_compiler_ibmclang lang)
|
|
|
|
__aix_compiler_gnu(${lang})
|
|
|
|
unset(CMAKE_${lang}_COMPILE_OPTIONS_VISIBILITY)
|
2021-07-25 09:55:31 +00:00
|
|
|
endmacro()
|