summaryrefslogtreecommitdiff
path: root/xmake/core
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/core')
-rw-r--r--xmake/core/base/os.lua2
-rw-r--r--xmake/core/tool/debugger.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua
index 6928e293b..9fcae713a 100644
--- a/xmake/core/base/os.lua
+++ b/xmake/core/base/os.lua
@@ -416,7 +416,7 @@ end
function os.tmpfile()
-- make it
- return path.join(os.tmpdir(), (os.uuid():gsub("-", "")))
+ return path.join(os.tmpdir(), "_" .. (os.uuid():gsub("-", "")))
end
-- run shell
diff --git a/xmake/core/tool/debugger.lua b/xmake/core/tool/debugger.lua
index c6f223f87..a906b7371 100644
--- a/xmake/core/tool/debugger.lua
+++ b/xmake/core/tool/debugger.lua
@@ -55,7 +55,7 @@ function debugger.load()
local instance = table.inherit(debugger)
-- load the debugger tool
- local result, errors = tool.load("dd")
+ local result, errors = tool.load("dg")
if not result then
return nil, errors
end