summaryrefslogtreecommitdiff
path: root/xmake/modules/private/utils/batchcmds.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/modules/private/utils/batchcmds.lua')
-rw-r--r--xmake/modules/private/utils/batchcmds.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/private/utils/batchcmds.lua b/xmake/modules/private/utils/batchcmds.lua
index 10b037f4e..a5a636f07 100644
--- a/xmake/modules/private/utils/batchcmds.lua
+++ b/xmake/modules/private/utils/batchcmds.lua
@@ -235,8 +235,8 @@ function batchcmds:compile(sourcefiles, objectfile, opt)
-- load compiler and get compilation command
local sourcekind = opt.sourcekind
- if not sourcekind and type(sourcefiles) == "string" then
- sourcekind = language.sourcekind_of(sourcefiles)
+ if not sourcekind and type(sourcefiles) == "string" or path.instance_of(sourcefiles) then
+ sourcekind = language.sourcekind_of(tostring(sourcefiles))
end
local compiler_inst = compiler.load(sourcekind, opt)
local program, argv = compiler_inst:compargv(sourcefiles, path(objectfile), opt)