From f467d71abc40d4fee6e896d7a0b8e4f5be7e16db Mon Sep 17 00:00:00 2001 From: ruki Date: Fri, 17 Jul 2026 23:49:52 +0800 Subject: add batchcmds:call and transform for bin2obj/c --- xmake/rules/utils/bin2obj/utils.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'xmake/rules/utils/bin2obj/utils.lua') diff --git a/xmake/rules/utils/bin2obj/utils.lua b/xmake/rules/utils/bin2obj/utils.lua index 3e8802e97..c7da5f1a1 100644 --- a/xmake/rules/utils/bin2obj/utils.lua +++ b/xmake/rules/utils/bin2obj/utils.lua @@ -35,6 +35,7 @@ function generate_objectfile(target, batchcmds, binaryfile, opt) opt = opt or {} local rulename = opt.rulename or "utils.bin2obj" local progress = opt.progress + local fileconfig = target:fileconfig(binaryfile) -- check for cosmocc toolchain local is_cosmocc = target:toolchain("cosmocc") or (target:has_tool("cc", "cosmocc") and target:has_tool("ar", "cosmoar")) @@ -63,6 +64,16 @@ function generate_objectfile(target, batchcmds, binaryfile, opt) end table.insert(target:objectfiles(), objectfile) + -- transform binary data first + -- @see https://github.com/xmake-io/xmake/issues/7513 + local transform = opt.transform or (fileconfig and fileconfig.transform) or target:extraconf("rules", rulename, "transform") + if transform then + batchcmds:show_progress(progress, "${color.build.object}transforming.bin2obj %s", binaryfile) + local transformed_file = target:autogenfile(binaryfile .. ".transformed") + batchcmds:call(transform, {binaryfile, transformed_file}, {target = target}) + binaryfile = transformed_file + end + -- add commands if progress then batchcmds:show_progress(progress, "${color.build.object}generating.bin2obj %s", binaryfile) @@ -74,6 +85,9 @@ function generate_objectfile(target, batchcmds, binaryfile, opt) -- get zeroend (default: false, but can be overridden) local zeroend = opt.zeroend + if zeroend == nil then + zeroend = fileconfig and fileconfig.zeroend + end if zeroend == nil then zeroend = target:extraconf("rules", rulename, "zeroend") or false end -- cgit v1.3.1