2016-09-27 15:01:08 -04:00
|
|
|
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
2009-12-02 09:52:00 -05:00
|
|
|
|
|
|
|
|
|
|
|
# This module is shared by multiple languages; use include blocker.
|
|
|
|
if(__HPUX_COMPILER_GNU)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
set(__HPUX_COMPILER_GNU 1)
|
|
|
|
|
|
|
|
macro(__hpux_compiler_gnu lang)
|
|
|
|
set(CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS "${CMAKE_SHARED_LIBRARY_CREATE_${lang}_FLAGS} -Wl,-E,-b,+nodefaultrpath")
|
2015-12-11 11:08:24 +01:00
|
|
|
set(CMAKE_SHARED_LIBRARY_LINK_${lang}_FLAGS "-Wl,-E")
|
2009-12-02 09:52:00 -05:00
|
|
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_${lang}_FLAG "-Wl,+b")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_RUNTIME_${lang}_FLAG_SEP ":")
|
|
|
|
set(CMAKE_SHARED_LIBRARY_SONAME_${lang}_FLAG "-Wl,+h")
|
2015-12-11 11:08:24 +01:00
|
|
|
|
|
|
|
set(CMAKE_${lang}_LINK_FLAGS "-Wl,+s,+nodefaultrpath")
|
2016-09-03 07:50:47 -04:00
|
|
|
unset(CMAKE_${lang}_COMPILE_OPTIONS_VISIBILITY)
|
2009-12-02 09:52:00 -05:00
|
|
|
endmacro()
|