From e281ea26c19103dcbc7f951a8592eeb6a1ff63a3 Mon Sep 17 00:00:00 2001 From: ruki Date: Sun, 10 Jul 2016 16:07:52 +0800 Subject: parse includes from cl.exe --- xmake/core/tool/compiler.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmake/core/tool/compiler.lua') diff --git a/xmake/core/tool/compiler.lua b/xmake/core/tool/compiler.lua index a523af449..7b8e1b909 100644 --- a/xmake/core/tool/compiler.lua +++ b/xmake/core/tool/compiler.lua @@ -399,7 +399,7 @@ function compiler:get(name) end -- compile the source file -function compiler:compile(sourcefile, objectfile, incdepfile, target, multitasking) +function compiler:compile(sourcefile, objectfile, incdepfile, target) -- get flags local flags = nil @@ -408,7 +408,7 @@ function compiler:compile(sourcefile, objectfile, incdepfile, target, multitaski end -- compile it - return sandbox.load(self:_tool().compile, sourcefile, objectfile, incdepfile, flags or "", multitasking) + return sandbox.load(self:_tool().compile, sourcefile, objectfile, incdepfile, flags or "") end -- get the compile command -- cgit v1.3.1