1CMAKE_NO_BUILTIN_CHRPATH
2------------------------
3
4Do not use the builtin binary editor to fix runtime library search
5paths on installation.
6
7When an ELF or XCOFF binary needs to have a different runtime library
8search path after installation than it does in the build tree, CMake uses
9a builtin editor to change the runtime search path in the installed copy.
10If this variable is set to true then CMake will relink the binary before
11installation instead of using its builtin editor.
12
13.. versionadded:: 3.20
14
15  This variable also applies to XCOFF binaries' LIBPATH.  Prior to the
16  addition of the XCOFF editor in CMake 3.20, this variable applied only
17  to ELF binaries' RPATH/RUNPATH.
18