From 898c534357e92437f63a4f3e12f159e07534c20c Mon Sep 17 00:00:00 2001 From: ruki Date: Sat, 21 May 2022 00:35:48 +0800 Subject: remove more ccache --- xmake/modules/core/tools/nvcc.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'xmake/modules/core/tools/nvcc.lua') diff --git a/xmake/modules/core/tools/nvcc.lua b/xmake/modules/core/tools/nvcc.lua index 254710ab3..ac4a6efef 100644 --- a/xmake/modules/core/tools/nvcc.lua +++ b/xmake/modules/core/tools/nvcc.lua @@ -25,7 +25,6 @@ import("core.project.config") import("core.project.project") import("core.platform.platform") import("core.language.language") -import("private.tools.ccache") import("utils.progress") -- init it @@ -328,7 +327,7 @@ end -- make the compile arguments list function compargv(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