diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-04-06 00:12:09 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-04-06 01:46:56 (GMT) |
commit | 4aed96e2309e64571aabfda263b3ca4c4f62d619 (patch) | |
tree | dd7b05e182f23dcc7491059e8995f9473bc4fb4b /Help/variable/CMAKE_INSTALL_NAME_DIR.rst | |
parent | 26af5908ec3be728b8ae487926b542be63e11af7 (diff) | |
download | CMake-4aed96e2309e64571aabfda263b3ca4c4f62d619.zip CMake-4aed96e2309e64571aabfda263b3ca4c4f62d619.tar.gz CMake-4aed96e2309e64571aabfda263b3ca4c4f62d619.tar.bz2 |
Apple: Set CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG on non-macOS too
Since CMake 3.19, we no longer support macOS SDKs older than 10.5,
which corresponds to Xcode 3. Supporting older Xcode versions for
device platforms is also not realistic. We therefore expect the -rpath
linker option should always be supported now.
When targeting iOS, tvOS or watchOS, the previous disabling of -rpath
support meant that the install_name_dir of shared libraries and
frameworks was unable to use @rpath. This resulted in embedding
absolute paths for their install_name. When they were embedded in an
app bundle, this would cause the app to fail at runtime. By enabling the
-rpath linker option, the default install_name_dir is now @rpath for these platforms, which results in binaries that do work at runtime.
Fixes: #20036
Diffstat (limited to 'Help/variable/CMAKE_INSTALL_NAME_DIR.rst')
-rw-r--r-- | Help/variable/CMAKE_INSTALL_NAME_DIR.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/variable/CMAKE_INSTALL_NAME_DIR.rst b/Help/variable/CMAKE_INSTALL_NAME_DIR.rst index 5ba4c04..b07d44f 100644 --- a/Help/variable/CMAKE_INSTALL_NAME_DIR.rst +++ b/Help/variable/CMAKE_INSTALL_NAME_DIR.rst @@ -1,7 +1,7 @@ CMAKE_INSTALL_NAME_DIR ---------------------- -macOS directory name for installed targets. +Directory name for installed targets on Apple platforms. ``CMAKE_INSTALL_NAME_DIR`` is used to initialize the :prop_tgt:`INSTALL_NAME_DIR` property on all targets. See that target |