diff options
| author | ruki <[email protected]> | 2020-03-16 23:12:03 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-03-16 13:12:18 +0800 |
| commit | 96dc02bb71b40d415daabf094252d0c4201a6626 (patch) | |
| tree | 205813730011e1be333d2381ee447b395d906425 | |
| parent | 4da8f86e848db294e30b6007bc8029eb21672830 (diff) | |
disable ccache for sdcc
| -rw-r--r-- | xmake/modules/core/tools/sdcc.lua | 3 |
1 files changed, 1 insertions, 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 |
