cmake/Modules/Platform/OpenBSD.cmake

23 lines
846 B
CMake
Raw Normal View History

2013-03-16 19:13:01 +02:00
include(Platform/NetBSD)
2010-06-23 01:18:35 +03:00
# On OpenBSD, the compile time linker does not share it's configuration with
# the runtime linker. This will extract the library search paths from the
# system's ld.so.hints file which will allow CMake to set the appropriate
# -rpath-link flags
2013-03-16 19:13:01 +02:00
if(NOT CMAKE_PLATFORM_RUNTIME_PATH)
execute_process(COMMAND /sbin/ldconfig -r
2010-06-23 01:18:35 +03:00
OUTPUT_VARIABLE LDCONFIG_HINTS
ERROR_QUIET)
2013-03-16 19:13:01 +02:00
string(REGEX REPLACE ".*search\\ directories:\\ ([^\n]*).*" "\\1"
2010-06-23 01:18:35 +03:00
LDCONFIG_HINTS "${LDCONFIG_HINTS}")
2013-03-16 19:13:01 +02:00
string(REGEX REPLACE ":" ";"
2010-06-23 01:18:35 +03:00
CMAKE_PLATFORM_RUNTIME_PATH
"${LDCONFIG_HINTS}")
2013-03-16 19:13:01 +02:00
endif()
2010-06-23 01:18:35 +03:00
2013-03-16 19:13:01 +02:00
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_OPENBSD_VERSIONING 1)
# OpenBSD policy requires that shared libraries be installed without
# executable permission.
set(CMAKE_INSTALL_SO_NO_EXE 1)