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/private/service | |
| parent | 5480e275ffb9412e2c48be9725c2ef9e29b909b9 (diff) | |
build small file in local
Diffstat (limited to 'xmake/modules/private/service')
| -rw-r--r-- | xmake/modules/private/service/distcc_build/client.lua | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/xmake/modules/private/service/distcc_build/client.lua b/xmake/modules/private/service/distcc_build/client.lua index 80b92ab63..3730ea9a9 100644 --- a/xmake/modules/private/service/distcc_build/client.lua +++ b/xmake/modules/private/service/distcc_build/client.lua @@ -233,6 +233,7 @@ function distcc_build_client:compile(program, argv, opt) opt = opt or {} local preprocess = assert(opt.preprocess, "preprocessor not found!") local cppinfo = preprocess(program, argv, opt) + local build_in_local = false if cppinfo then -- get objectfile from the build cache first local cached = false @@ -248,9 +249,14 @@ function distcc_build_client:compile(program, argv, opt) -- do distcc compilation if not cached then - session:compile(cppinfo.sourcefile, cppinfo.objectfile, cppinfo.cppfile, cppinfo.cppflags, opt) - if cachekey then - build_cache.put(cachekey, cppinfo.objectfile) + -- we just compile the large preprocessed file in remote + if os.filesize(cppinfo.cppfile) > 4096 then + session:compile(cppinfo.sourcefile, cppinfo.objectfile, cppinfo.cppfile, cppinfo.cppflags, opt) + if cachekey then + build_cache.put(cachekey, cppinfo.objectfile) + end + else + build_in_local = true end end end @@ -260,7 +266,7 @@ function distcc_build_client:compile(program, argv, opt) -- unlock this host self:_host_status_unlock(host) - return cppinfo + return cppinfo, build_in_local end -- get the status |
