summaryrefslogtreecommitdiff
path: root/xmake/core/sandbox
diff options
context:
space:
mode:
authorruki <[email protected]>2025-12-11 23:35:23 +0800
committerruki <[email protected]>2025-12-12 09:00:44 +0800
commit4ccb8514f37fdf7108b41dbcd8ca77143841e1cd (patch)
treeff1b1ae7433fa16acb2bfccffcf4bebc4e9b8b98 /xmake/core/sandbox
parent409b21826872503ef479848321003d7ca4c1aad8 (diff)
set plain as default
Diffstat (limited to 'xmake/core/sandbox')
-rw-r--r--xmake/core/sandbox/modules/import/core/base/binutils.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/sandbox/modules/import/core/base/binutils.lua b/xmake/core/sandbox/modules/import/core/base/binutils.lua
index e2306a2da..5bc0e4f72 100644
--- a/xmake/core/sandbox/modules/import/core/base/binutils.lua
+++ b/xmake/core/sandbox/modules/import/core/base/binutils.lua
@@ -53,8 +53,8 @@ function sandbox_core_base_binutils.readsyms(binaryfile)
end
-- extract static library to directory
-function sandbox_core_base_binutils.extractlib(libraryfile, outputdir)
- local ok, errors = binutils.extractlib(libraryfile, outputdir)
+function sandbox_core_base_binutils.extractlib(libraryfile, outputdir, opt)
+ local ok, errors = binutils.extractlib(libraryfile, outputdir, opt)
if not ok then
raise("extractlib: %s", errors or "unknown errors")
end