diff options
| author | ruki <[email protected]> | 2022-05-21 00:35:48 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-05-21 00:35:48 +0800 |
| commit | 898c534357e92437f63a4f3e12f159e07534c20c (patch) | |
| tree | b76aef9cae9b7febf378410dc9934d4e400f5c42 /xmake/modules/core/tools/nvcc.lua | |
| parent | 2f45397ee666ff48c7bd7046c70a66bff37d47c6 (diff) | |
remove more ccache
Diffstat (limited to 'xmake/modules/core/tools/nvcc.lua')
| -rw-r--r-- | xmake/modules/core/tools/nvcc.lua | 3 |
1 files changed, 1 insertions, 2 deletions
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 |
