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(__LINUX_COMPILER_LCC)
|
2021-07-25 09:55:31 +00:00
|
|
|
return()
|
|
|
|
endif()
|
2023-01-10 14:42:48 +00:00
|
|
|
set(__LINUX_COMPILER_LCC 1)
|
2021-07-25 09:55:31 +00:00
|
|
|
|
2023-01-10 14:42:48 +00:00
|
|
|
macro(__linux_compiler_lcc lang)
|
2021-07-25 09:55:31 +00:00
|
|
|
# We pass this for historical reasons. Projects may have
|
|
|
|
# executables that use dlopen but do not set ENABLE_EXPORTS.
|
|
|
|
set(CMAKE_SHARED_LIBRARY_LINK_${lang}_FLAGS "-rdynamic")
|
|
|
|
endmacro()
|