diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2020-03-27 13:03:44 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2020-04-06 16:12:14 (GMT) |
commit | f867423aa214e3145fe4e6775eb9634c340df02b (patch) | |
tree | 86ec75c2752ddcf02c12d36b6aef23271b6d3ab5 /Help/command | |
parent | 888b8a43d82e6f6157642c2bd84520920d8e2d11 (diff) | |
download | CMake-f867423aa214e3145fe4e6775eb9634c340df02b.zip CMake-f867423aa214e3145fe4e6775eb9634c340df02b.tar.gz CMake-f867423aa214e3145fe4e6775eb9634c340df02b.tar.bz2 |
file: GetRuntimeDependencies use CMAKE_OBJDUMP when applicable
On machines where the gnu bin utils are prefixed, or suffixed
the file(GET_RUNTIME_DEPENDENCIES ) command would fail without
explicitly setting the location of objdump.
Now we pre-populate the variables used to find objdump based
on the gnu bin utils, so that these use cases are better supported
Diffstat (limited to 'Help/command')
-rw-r--r-- | Help/command/file.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/command/file.rst b/Help/command/file.rst index 92cb2ed..6105219 100644 --- a/Help/command/file.rst +++ b/Help/command/file.rst @@ -402,8 +402,8 @@ dependency resolution: Determines the path to the tool to use for dependency resolution. This is the actual path to ``objdump``, ``dumpbin``, or ``otool``. - If this variable is not specified, it is determined automatically by system - introspection. + If this variable is not specified, it is determined by the value of + ``CMAKE_OBJDUMP`` if set, else by system introspection. Writing ^^^^^^^ |