diff options
| author | ruki <[email protected]> | 2025-12-11 23:01:24 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-12-12 09:00:43 +0800 |
| commit | c8d424baeb7b93e2a1e900b271bcc09144fdce94 (patch) | |
| tree | 6e506e2e9d264376b33258e97bf3f9e4440a80bf /xmake/rules/utils | |
| parent | 1c5e66f354ca526214845fa190f7d18a4960d89b (diff) | |
improve binutils and add cli modules
Diffstat (limited to 'xmake/rules/utils')
| -rw-r--r-- | xmake/rules/utils/bin2c/utils.lua | 2 | ||||
| -rw-r--r-- | xmake/rules/utils/bin2obj/utils.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/utils/bin2c/utils.lua b/xmake/rules/utils/bin2c/utils.lua index cf2f074f2..405c2ed62 100644 --- a/xmake/rules/utils/bin2c/utils.lua +++ b/xmake/rules/utils/bin2c/utils.lua @@ -91,7 +91,7 @@ function generate_headerfile(target, batchcmds, binaryfile, opt) table.insert(argv, "--nozeroend") end - batchcmds:vlua("utils.binary.bin2c", argv) + batchcmds:vlua("cli.binutils.bin2c", argv) return headerfile end diff --git a/xmake/rules/utils/bin2obj/utils.lua b/xmake/rules/utils/bin2obj/utils.lua index b658928a1..0e2bba9fd 100644 --- a/xmake/rules/utils/bin2obj/utils.lua +++ b/xmake/rules/utils/bin2obj/utils.lua @@ -108,7 +108,7 @@ function generate_objectfile(target, batchcmds, binaryfile, opt) if zeroend then table.insert(argv, "--zeroend") end - batchcmds:vlua("utils.binary.bin2obj", argv) + batchcmds:vlua("cli.binutils.bin2obj", argv) return objectfile end |
