SysTools.Ar: trim Apple-ranlib wasm member padding - #192
Draft
hamishmack wants to merge 1 commit into
Draft
Conversation
hamishmack
force-pushed
the
stable-ghc-9.14
branch
from
July 15, 2026 04:18
804eb77 to
2c2ebfa
Compare
Apple's ranlib (cctools; the default `ranlib` on darwin, which cabal runs after `ar` on macOS build hosts) pads each archive member's data to an 8-byte boundary with '\n' bytes and counts that padding into the header's size field. Mach-O readers tolerate the trailing bytes, but the JS backend extracts C-bits wasm objects from package archives and hands them to emscripten, where wasm-ld fails with "section too large" on the padding. Recover a wasm member's true length by walking its section table (a 1-byte id plus a ULEB128 length each) and drop the trailing '\n' padding when the payload is a WebAssembly module. Non-wasm members are returned unchanged.
hamishmack
force-pushed
the
wip/hkm/js-ar-darwin-ranlib-padding
branch
from
July 15, 2026 04:21
3c31791 to
0c4ac52
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Apple's ranlib (cctools; the default
ranlibon darwin, which cabal runs afteraron macOS build hosts) pads each archive member's data to an 8-byte boundary with '\n' bytes and counts that padding into the header's size field. Mach-O readers tolerate the trailing bytes, but the JS backend extracts C-bits wasm objects from package archives and hands them to emscripten, where wasm-ld fails with "section too large" on the padding.Recover a wasm member's true length by walking its section table (a 1-byte id plus a ULEB128 length each) and drop the trailing '\n' padding when the payload is a WebAssembly module. Non-wasm members are returned unchanged.