summaryrefslogtreecommitdiffstats
path: root/Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2018-10-25 17:21:11 (GMT)
committerBrad King <brad.king@kitware.com>2018-10-26 13:36:53 (GMT)
commit2f9c2539614c744092cd46149787440639ce9579 (patch)
treea63cc3d801f92c73d4f916e3ab34e3ef0cd79898 /Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst
parentfd02538974dd952a8639d371c2c0067d30d5469a (diff)
downloadCMake-2f9c2539614c744092cd46149787440639ce9579.zip
CMake-2f9c2539614c744092cd46149787440639ce9579.tar.gz
CMake-2f9c2539614c744092cd46149787440639ce9579.tar.bz2
Help: clarify "LINKER:" prefix usage
Fixes: #18503
Diffstat (limited to 'Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst')
-rw-r--r--Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst b/Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst
index 0e52282..321f97e 100644
--- a/Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst
+++ b/Help/variable/CMAKE_LANG_LINKER_WRAPPER_FLAG.rst
@@ -17,7 +17,7 @@ For example, for ``Clang`` we have:
set (CMAKE_C_LINKER_WRAPPER_FLAG "-Xlinker" " ")
-Specifying ``"LINKER:-z defs"`` will be transformed in
+Specifying ``"LINKER:-z,defs"`` will be transformed in
``-Xlinker -z -Xlinker defs``.
For ``GNU GCC``:
@@ -27,7 +27,7 @@ For ``GNU GCC``:
set (CMAKE_C_LINKER_WRAPPER_FLAG "-Wl,")
set (CMAKE_C_LINKER_WRAPPER_FLAG_SEP ",")
-Specifying ``"LINKER:-z defs"`` will be transformed in ``-Wl,-z,defs``.
+Specifying ``"LINKER:-z,defs"`` will be transformed in ``-Wl,-z,defs``.
And for ``SunPro``:
@@ -36,4 +36,4 @@ And for ``SunPro``:
set (CMAKE_C_LINKER_WRAPPER_FLAG "-Qoption" "ld" " ")
set (CMAKE_C_LINKER_WRAPPER_FLAG_SEP ",")
-Specifying ``"LINKER:-z defs"`` will be transformed in ``-Qoption ld -z,defs``.
+Specifying ``"LINKER:-z,defs"`` will be transformed in ``-Qoption ld -z,defs``.