diff options
| author | ruki <[email protected]> | 2022-05-20 21:02:30 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-05-20 21:02:30 +0800 |
| commit | c3fd2dd9110aa41cd321d5e73823f57f2d25ff8c (patch) | |
| tree | 77112fa976889fc8c01befe5fdc9c45f10cf9073 /xmake/modules/core/tools/gcc.lua | |
| parent | 5480e275ffb9412e2c48be9725c2ef9e29b909b9 (diff) | |
build small file in local
Diffstat (limited to 'xmake/modules/core/tools/gcc.lua')
| -rw-r--r-- | xmake/modules/core/tools/gcc.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/xmake/modules/core/tools/gcc.lua b/xmake/modules/core/tools/gcc.lua index 8a6cc7b84..16c650768 100644 --- a/xmake/modules/core/tools/gcc.lua +++ b/xmake/modules/core/tools/gcc.lua @@ -476,9 +476,19 @@ end -- do compile function _compile(self, sourcefile, objectfile, compflags, opt) local cppinfo + local build_in_local local program, argv = compargv(self, sourcefile, objectfile, compflags) if distcc_build_client.is_distccjob() and distcc_build_client.singleton():has_freejobs() then - cppinfo = distcc_build_client.singleton():compile(program, argv, {envs = self:runenvs(), preprocess = _preprocess, tool = self}) + cppinfo, build_in_local = distcc_build_client.singleton():compile(program, argv, {envs = self:runenvs(), preprocess = _preprocess, tool = self}) + if cppinfo and build_in_local then + os.iorunv(program, table.join(cppinfo.cppflags, "-o", cppinfo.objectfile, cppinfo.cppfile), {envs = self:runenvs()}) + if build_cache.is_enabled() and build_cache.is_supported(self:kind()) then + local cachekey = build_cache.cachekey(program, cppinfo.cppfile, cppinfo.cppflags, self:runenvs()) + if cachekey then + build_cache.put(cachekey, cppinfo.objectfile) + end + end + end elseif build_cache.is_enabled() and build_cache.is_supported(self:kind()) then local t = os.mclock() cppinfo = _preprocess(program, argv, {envs = self:runenvs(), tool = self}) |
