From 96dc02bb71b40d415daabf094252d0c4201a6626 Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 16 Mar 2020 23:12:03 +0800 Subject: disable ccache for sdcc --- xmake/modules/core/tools/sdcc.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xmake/modules/core/tools/sdcc.lua b/xmake/modules/core/tools/sdcc.lua index c5f720b3f..5da7028d8 100644 --- a/xmake/modules/core/tools/sdcc.lua +++ b/xmake/modules/core/tools/sdcc.lua @@ -20,7 +20,6 @@ -- imports import("core.base.option") -import("private.tools.ccache") -- init it function init(self) @@ -173,7 +172,7 @@ end -- make the compile arguments list function _compargv1(self, sourcefile, objectfile, flags) - return ccache.cmdargv(self:program(), table.join("-c", flags, "-o", objectfile, sourcefile)) + return self:program(), table.join("-c", flags, "-o", objectfile, sourcefile) end -- compile the source file -- cgit v1.3.1