diff options
| author | ruki <[email protected]> | 2025-10-09 00:45:20 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-10-09 00:45:20 +0800 |
| commit | 3cab890282936d70f85b73a6a7448b68a5e0d632 (patch) | |
| tree | ff82e00790409f4b5afe888e49f20a2fbc488e7e | |
| parent | dad77a28d24dab28734f604089ce18647c99e9f5 (diff) | |
fix tips
| -rw-r--r-- | xmake/toolchains/clang-cl/check.lua | 2 | ||||
| -rw-r--r-- | xmake/toolchains/clang/check.lua | 2 | ||||
| -rw-r--r-- | xmake/toolchains/msvc/check.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/xmake/toolchains/clang-cl/check.lua b/xmake/toolchains/clang-cl/check.lua index 5b9b0a4e7..b7e417d69 100644 --- a/xmake/toolchains/clang-cl/check.lua +++ b/xmake/toolchains/clang-cl/check.lua @@ -32,7 +32,7 @@ function _check_clang_cl(toolchain, vcvars) end local result = find_tool("clang-cl", {force = true, paths = paths, envs = vcvars}) if result then - cprint("checking for LLVM Clang C/C++ Compiler (%s) ... ${color.success}", toolchain:arch()) + cprint("checking for LLVM Clang C/C++ Compiler (%s) ... ${color.success}${text.success}", toolchain:arch()) end return result end diff --git a/xmake/toolchains/clang/check.lua b/xmake/toolchains/clang/check.lua index 7a9c33de4..e921686de 100644 --- a/xmake/toolchains/clang/check.lua +++ b/xmake/toolchains/clang/check.lua @@ -31,7 +31,7 @@ function _check_clang(toolchain, vcvars, suffix) end local result = find_tool("clang" .. suffix, {force = true, paths = paths, envs = vcvars}) if result then - cprint("checking for LLVM Clang C/C++ Compiler (%s) ... ${color.success}", toolchain:arch()) + cprint("checking for LLVM Clang C/C++ Compiler (%s) ... ${color.success}${text.success}", toolchain:arch()) end return result end diff --git a/xmake/toolchains/msvc/check.lua b/xmake/toolchains/msvc/check.lua index cf6835c2d..d5b1d9407 100644 --- a/xmake/toolchains/msvc/check.lua +++ b/xmake/toolchains/msvc/check.lua @@ -27,7 +27,7 @@ import("private.utils.toolchain", {alias = "toolchain_utils"}) function _check_cl(toolchain, vcvars) local cl = find_tool("cl.exe", {force = true, envs = vcvars}) if cl then - cprint("checking for Microsoft C/C++ Compiler (%s) ... ${color.success}", toolchain:arch()) + cprint("checking for Microsoft C/C++ Compiler (%s) ... ${color.success}${text.success}", toolchain:arch()) end return cl end |
