diff options
| author | ruki <[email protected]> | 2026-07-18 23:17:40 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-07-18 23:17:40 +0800 |
| commit | 64439096a06b65556fff59f3b0b4e6a439b44129 (patch) | |
| tree | 7d2efb39c42d227dd32723ca5e02ba95f86cfda4 /xmake/modules | |
| parent | 108eaa6d115e03f44bd1f105328dbe90a7747b30 (diff) | |
| parent | cfebf2a690e1a0ad2255f64eec5bec43eeac0049 (diff) | |
Merge pull request #7655 from xmake-io/binutilsmaster
fix bin2obj for some archs
Diffstat (limited to 'xmake/modules')
| -rw-r--r-- | xmake/modules/cli/binutils/bin2obj.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/modules/cli/binutils/bin2obj.lua b/xmake/modules/cli/binutils/bin2obj.lua index 06493143a..c8314594f 100644 --- a/xmake/modules/cli/binutils/bin2obj.lua +++ b/xmake/modules/cli/binutils/bin2obj.lua @@ -32,7 +32,8 @@ local options = { {nil, "target_minver", "kv", nil, "Set the target minimum version (e.g., 10.0, 18.2)."}, {nil, "xcode_sdkver", "kv", nil, "Set the Xcode SDK version (e.g., 10.0, 18.2)."}, {nil, "zeroend", "k", nil, "Append a null terminator ('\\0') at the end of data."}, - {nil, "cosmocc", "k", nil, "Enable cosmocc support (generate concomitant object file)."} + {nil, "cosmocc", "k", nil, "Enable cosmocc support (generate concomitant object file)."}, + {nil, "refobj", "kv", nil, "Mirror class/endianness/machine/e_flags from a reference elf object."} } function main(...) |
