summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Windows-Intel.cmake
diff options
context:
space:
mode:
authorFrancisco Facioni <fran6co@gmail.com>2020-01-10 14:03:25 (GMT)
committerBrad King <brad.king@kitware.com>2020-03-03 13:31:13 (GMT)
commit55196a1440e26917d40e6a7a3eb8d9fb323fa657 (patch)
treec61bfa5795dffcb5cc70981f2c7fdf52ccfb7cfb /Modules/Platform/Windows-Intel.cmake
parent2caae281722b645a5842e1f1689b152b72bb6038 (diff)
downloadCMake-55196a1440e26917d40e6a7a3eb8d9fb323fa657.zip
CMake-55196a1440e26917d40e6a7a3eb8d9fb323fa657.tar.gz
CMake-55196a1440e26917d40e6a7a3eb8d9fb323fa657.tar.bz2
MSVC: Use 'lib' instead of 'link /lib' to create static libraries
`link.exe /lib` is an undocumented flag and it just calls `lib.exe`. Also `link.exe` doesn't parse the `/lib` option correctly when in a response file.
Diffstat (limited to 'Modules/Platform/Windows-Intel.cmake')
-rw-r--r--Modules/Platform/Windows-Intel.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/Windows-Intel.cmake b/Modules/Platform/Windows-Intel.cmake
index 96b1760..5d8f7fc 100644
--- a/Modules/Platform/Windows-Intel.cmake
+++ b/Modules/Platform/Windows-Intel.cmake
@@ -11,7 +11,7 @@ set(__WINDOWS_INTEL 1)
include(Platform/Windows-MSVC)
macro(__windows_compiler_intel lang)
__windows_compiler_msvc(${lang})
- string(REPLACE "<CMAKE_LINKER> /lib" "xilib" CMAKE_${lang}_CREATE_STATIC_LIBRARY "${CMAKE_${lang}_CREATE_STATIC_LIBRARY}")
+ string(REPLACE "<CMAKE_AR>" "xilib" CMAKE_${lang}_CREATE_STATIC_LIBRARY "${CMAKE_${lang}_CREATE_STATIC_LIBRARY}")
foreach(rule CREATE_SHARED_LIBRARY CREATE_SHARED_MODULE LINK_EXECUTABLE)
string(REPLACE "<CMAKE_LINKER>" "xilink" CMAKE_${lang}_${rule} "${CMAKE_${lang}_${rule}}")
endforeach()