diff options
Diffstat (limited to 'xmake/platforms/linux/check.lua')
| -rw-r--r-- | xmake/platforms/linux/check.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmake/platforms/linux/check.lua b/xmake/platforms/linux/check.lua index 6c92ec684..8b0c38dc6 100644 --- a/xmake/platforms/linux/check.lua +++ b/xmake/platforms/linux/check.lua @@ -78,7 +78,7 @@ function _check_toolchains(config) checker.check_toolchain_from_env(config, "ex", "AR", "the static library extractor") checker.check_toolchain_from_env(config, "sh", "SH", "the shared library linker") checker.check_toolchain_from_env(config, "sc", "SC", "the swift compiler") - checker.check_toolchain_from_env(config, "dd", "DD", "the debugger") + checker.check_toolchain_from_env(config, "dg", "DD", "the debugger") end -- check for gcc @@ -95,7 +95,7 @@ function _check_toolchains(config) checker.check_toolchain(config, "ex", cross, "ar", "the static library extractor") checker.check_toolchain(config, "sh", cross, "g++", "the shared library linker") checker.check_toolchain(config, "sh", cross, "gcc", "the shared library linker") - checker.check_toolchain(config, "dd", cross, "gdb", "the debugger") + checker.check_toolchain(config, "dg", cross, "gdb", "the debugger") -- check for clang checker.check_toolchain(config, "cc", cross, "clang", "the c compiler") @@ -112,13 +112,13 @@ function _check_toolchains(config) checker.check_toolchain(config, "sh", cross, "clang++", "the shared library linker") checker.check_toolchain(config, "sh", cross, "clang", "the shared library linker") checker.check_toolchain(config, "sc", cross, "swiftc", "the swift compiler") - checker.check_toolchain(config, "dd", cross, "lldb", "the debugger") + checker.check_toolchain(config, "dg", cross, "lldb", "the debugger") -- check for golang tools checker.check_toolchain(config, "go", "", "go", "the golang compiler") checker.check_toolchain(config, "go", "", "gccgo", "the golang compiler") - checker.check_toolchain(config, "go-ar","", "go", "the golang archiver") - checker.check_toolchain(config, "go-ar","", "gccgo", "the golang archiver") + checker.check_toolchain(config, "go-ar","", "go", "the golang static library archiver") + checker.check_toolchain(config, "go-ar","", "gccgo", "the golang static library archiver") checker.check_toolchain(config, "go-ld","", "go", "the golang linker") checker.check_toolchain(config, "go-ld","", "gccgo", "the golang linker") end |
