31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
diff --git a/llvm/cmake/modules/LLVMInstallSymlink.cmake b/llvm/cmake/modules/LLVMInstallSymlink.cmake
|
|
index b5c35f706cb7..d9f629be06a7 100644
|
|
--- a/llvm/cmake/modules/LLVMInstallSymlink.cmake
|
|
+++ b/llvm/cmake/modules/LLVMInstallSymlink.cmake
|
|
@@ -6,17 +6,18 @@ include(GNUInstallDirs)
|
|
|
|
function(install_symlink name target outdir)
|
|
set(DESTDIR $ENV{DESTDIR})
|
|
+ if(CMAKE_HOST_UNIX)
|
|
+ set(LINK_OR_COPY create_symlink)
|
|
+ else()
|
|
+ set(LINK_OR_COPY copy)
|
|
+ endif()
|
|
+
|
|
set(bindir "${DESTDIR}${CMAKE_INSTALL_PREFIX}/${outdir}")
|
|
|
|
message(STATUS "Creating ${name}")
|
|
|
|
execute_process(
|
|
- COMMAND "${CMAKE_COMMAND}" -E create_symlink "${target}" "${name}"
|
|
- WORKING_DIRECTORY "${bindir}" ERROR_VARIABLE has_err)
|
|
- if(CMAKE_HOST_WIN32 AND has_err)
|
|
- execute_process(
|
|
- COMMAND "${CMAKE_COMMAND}" -E copy "${target}" "${name}"
|
|
- WORKING_DIRECTORY "${bindir}")
|
|
- endif()
|
|
+ COMMAND "${CMAKE_COMMAND}" -E ${LINK_OR_COPY} "${target}" "${name}"
|
|
+ WORKING_DIRECTORY "${bindir}")
|
|
|
|
endfunction()
|