summaryrefslogtreecommitdiff
path: root/xmake/modules/detect/tools
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 /xmake/modules/detect/tools
parent47519ac7cfa6a2bd7c6dbed3ebea8a768dc9e033 (diff)
fix wrong lld-link executable name.
Diffstat (limited to 'xmake/modules/detect/tools')
-rw-r--r--xmake/modules/detect/tools/find_lld_link.lua2
1 files changed, 1 insertions, 1 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)