diff options
author | Thomas Stenersen <thomas.stenersen@nordicsemi.no> | 2017-10-06 06:29:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-10-06 12:15:55 (GMT) |
commit | 11f4c19d7babf5412efeebdb030dddfb9b7db366 (patch) | |
tree | 4c7583e8de5e37574e2bd33109a8181c7e96a344 /Modules/Compiler/Clang.cmake | |
parent | a91eb5e41f486628910f189bf40403568af013c7 (diff) | |
download | CMake-11f4c19d7babf5412efeebdb030dddfb9b7db366.zip CMake-11f4c19d7babf5412efeebdb030dddfb9b7db366.tar.gz CMake-11f4c19d7babf5412efeebdb030dddfb9b7db366.tar.bz2 |
IPO: Fix support for spaces in path to archive tools
In the normal archiving rules the ``<CMAKE_AR>`` placeholder is replaced
by the generators with a properly-quoted path to the tool. In the IPO
rules we specify the tools directly, so we need to quote them.
Fixes: #17326
Diffstat (limited to 'Modules/Compiler/Clang.cmake')
-rw-r--r-- | Modules/Compiler/Clang.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/Compiler/Clang.cmake b/Modules/Compiler/Clang.cmake index 7d476f9..9f5e921 100644 --- a/Modules/Compiler/Clang.cmake +++ b/Modules/Compiler/Clang.cmake @@ -69,15 +69,15 @@ else() endif() set(CMAKE_${lang}_ARCHIVE_CREATE_IPO - "${__ar} cr <TARGET> <LINK_FLAGS> <OBJECTS>" + "\"${__ar}\" cr <TARGET> <LINK_FLAGS> <OBJECTS>" ) set(CMAKE_${lang}_ARCHIVE_APPEND_IPO - "${__ar} r <TARGET> <LINK_FLAGS> <OBJECTS>" + "\"${__ar}\" r <TARGET> <LINK_FLAGS> <OBJECTS>" ) set(CMAKE_${lang}_ARCHIVE_FINISH_IPO - "${__ranlib} <TARGET>" + "\"${__ranlib}\" <TARGET>" ) endmacro() endif() |