summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRedbeanw44602 <[email protected]>2024-12-31 19:51:01 +0800
committerRedbeanw44602 <[email protected]>2024-12-31 19:51:01 +0800
commitbfd36486410e891d4790cc28b4b931d52392ce23 (patch)
tree840cf5c0a4d64d9e7a9b27876aca66f7c15f12ef
parent47519ac7cfa6a2bd7c6dbed3ebea8a768dc9e033 (diff)
fix wrong lld-link executable name.
-rw-r--r--xmake/modules/detect/tools/find_lld_link.lua2
-rw-r--r--xmake/toolchains/clang-cl/xmake.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/detect/tools/find_lld_link.lua b/xmake/modules/detect/tools/find_lld_link.lua
index 18641afdf..140e0efd1 100644
--- a/xmake/modules/detect/tools/find_lld_link.lua
+++ b/xmake/modules/detect/tools/find_lld_link.lua
@@ -38,7 +38,7 @@ import("lib.detect.find_programver")
--
function main(opt)
opt = opt or {}
- local program = find_program(opt.program or "lld.link", opt)
+ local program = find_program(opt.program or "lld-link", opt)
local version = nil
if program and opt and opt.version then
version = find_programver(program, opt)
diff --git a/xmake/toolchains/clang-cl/xmake.lua b/xmake/toolchains/clang-cl/xmake.lua
index 443eba0a2..cc0263642 100644
--- a/xmake/toolchains/clang-cl/xmake.lua
+++ b/xmake/toolchains/clang-cl/xmake.lua
@@ -31,7 +31,7 @@
--
toolchain("clang-cl")
set_kind("standalone")
- set_homepage("https://visualstudio.microsoft.com")
+ set_homepage("https://clang.llvm.org/")
set_description("LLVM Clang C/C++ Compiler compatible with msvc")
set_runtimes("MT", "MTd", "MD", "MDd")