summaryrefslogtreecommitdiff
path: root/xmake/modules/private/cache/build_cache.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-06-16 23:58:42 +0800
committerruki <[email protected]>2022-06-16 23:58:42 +0800
commit618e06bdbf3e588916ae523e65e1de9e65c10fd3 (patch)
treee618f115abca7783d3e80658593eb80d312874e5 /xmake/modules/private/cache/build_cache.lua
parentcc1caaa566b08212d484eb2565e671c418789110 (diff)
add compile fallback for cl/ccache
Diffstat (limited to 'xmake/modules/private/cache/build_cache.lua')
-rw-r--r--xmake/modules/private/cache/build_cache.lua15
1 files changed, 14 insertions, 1 deletions
diff --git a/xmake/modules/private/cache/build_cache.lua b/xmake/modules/private/cache/build_cache.lua
index 4f098c983..fc69b9b84 100644
--- a/xmake/modules/private/cache/build_cache.lua
+++ b/xmake/modules/private/cache/build_cache.lua
@@ -119,6 +119,7 @@ function dump_stats()
local remote_hit_count = (_g.remote_hit_count or 0)
local remote_newfiles_count = (_g.remote_newfiles_count or 0)
local preprocess_error_count = (_g.preprocess_error_count or 0)
+ local compile_fallback_count = (_g.compile_fallback_count or 0)
vprint("")
vprint("build cache stats:")
vprint("cache directory: %s", rootdir())
@@ -129,6 +130,7 @@ function dump_stats()
vprint("remote cache hit: %d", remote_hit_count)
vprint("remote new cached files: %d", remote_newfiles_count)
vprint("preprocess failed: %d", preprocess_error_count)
+ vprint("compile fallback count: %d", compile_fallback_count)
vprint("")
end
@@ -185,7 +187,18 @@ function build(program, argv, opt)
os.cp(objectfile_cached, cppinfo.objectfile)
else
-- do compile
- compile(program, cppinfo, opt)
+ local compile_fallback = opt.compile_fallback
+ if compile_fallback then
+ local ok = try {function () compile(program, cppinfo, opt); return true end}
+ if not ok then
+ -- we fallback to compile original source file if compiling preprocessed file fails.
+ -- https://github.com/xmake-io/xmake/issues/2467
+ compile_fallback()
+ _g.compile_fallback_count = (_g.compile_fallback_count or 0) + 1
+ end
+ else
+ compile(program, cppinfo, opt)
+ end
if cachekey then
put(cachekey, cppinfo.objectfile)
end