summaryrefslogtreecommitdiff
path: root/xmake/modules/private/cache/build_cache.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-07 22:40:30 +0800
committerruki <[email protected]>2025-11-07 15:01:57 +0800
commitca2cc6d298729b2b060fd08af37a64d5958890f8 (patch)
tree9d86ef14516736a336aaa48675bfc970558c458d /xmake/modules/private/cache/build_cache.lua
parentcf31cdc6eacf6a793989df538ecc7a00d48c6457 (diff)
remove builtin async os.rm
Diffstat (limited to 'xmake/modules/private/cache/build_cache.lua')
-rw-r--r--xmake/modules/private/cache/build_cache.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/cache/build_cache.lua b/xmake/modules/private/cache/build_cache.lua
index 573d94550..2e7e6be89 100644
--- a/xmake/modules/private/cache/build_cache.lua
+++ b/xmake/modules/private/cache/build_cache.lua
@@ -339,7 +339,7 @@ function build(program, argv, opt)
_g.cache_miss_total_time = (_g.cache_miss_total_time or 0) + (os.mclock() - cache_miss_start_time)
end
end
- os.tryrm(cppinfo.cppfile, {async = true, detach = true})
+ os.tryrm(cppinfo.cppfile)
else
_g.preprocess_error_count = (_g.preprocess_error_count or 0) + 1
end