-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
std.Build: add build-id option #22516
Open
Jan200101
wants to merge
1
commit into
ziglang:master
Choose a base branch
from
Jan200101:PR/build_id_option
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -202,6 +202,15 @@ pub fn main() !void { | |||||||||||||||||||||||
next_arg, @errorName(err), | ||||||||||||||||||||||||
}); | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
} else if (mem.eql(u8, arg, "--build-id")) { | ||||||||||||||||||||||||
builder.build_id = .fast; | ||||||||||||||||||||||||
} else if (mem.startsWith(u8, arg, "--build-id=")) { | ||||||||||||||||||||||||
const style = arg["--build-id=".len..]; | ||||||||||||||||||||||||
builder.build_id = std.zig.BuildId.parse(style) catch |err| { | ||||||||||||||||||||||||
fatal("unable to parse --build-id style '{s}': {s}", .{ | ||||||||||||||||||||||||
style, @errorName(err), | ||||||||||||||||||||||||
}); | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
} else if (mem.eql(u8, arg, "--debounce")) { | ||||||||||||||||||||||||
const next_arg = nextArg(args, &arg_idx) orelse | ||||||||||||||||||||||||
fatalWithHint("expected u16 after '{s}'", .{arg}); | ||||||||||||||||||||||||
|
@@ -1364,6 +1373,10 @@ fn usage(b: *std.Build, out_stream: anytype) !void { | |||||||||||||||||||||||
\\ --zig-lib-dir [arg] Override path to Zig lib directory | ||||||||||||||||||||||||
\\ --build-runner [file] Override path to build runner | ||||||||||||||||||||||||
\\ --seed [integer] For shuffling dependency traversal order (default: random) | ||||||||||||||||||||||||
\\ --build-id[=style] At a minor link-time expense, coordinates stripped binaries | ||||||||||||||||||||||||
alexrp marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||
\\ fast, uuid, sha1, md5 with debug symbols via a '.note.gnu.build-id' section | ||||||||||||||||||||||||
\\ 0x[hexstring] Maximum 32 bytes | ||||||||||||||||||||||||
\\ none (default) Disable build-id | ||||||||||||||||||||||||
Comment on lines
+1376
to
+1379
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
And likewise in |
||||||||||||||||||||||||
\\ --debug-log [scope] Enable debugging the compiler | ||||||||||||||||||||||||
\\ --debug-pkg-config Fail if unknown pkg-config flags encountered | ||||||||||||||||||||||||
\\ --debug-rt Debug compiler runtime libraries | ||||||||||||||||||||||||
|
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just out of curiosity, why this default in particular? Is there precedent in other build systems / toolchains?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I copied the handling directly from main.zig to keep it the same across build and build-exe
zig/src/main.zig
Lines 1681 to 1682 in b350049
gcc and clang use
sha1
as the default as it was the first build-id to be implemented, I know that the initial zig implementation had it as a boolean option, either on or off, but I am not sure why fast was chosen specifically.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you happen to know what distros tend to use here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fedora (and I assume anything in the same family) explicitly uses sha1
Arch builds gcc with
--enable-linker-build-id
which automatically passes--build-id
to the linker, implying sha1it might be best to just remove the default here and to demand that the type is explicit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some context: #15459 (comment)
At least according to
man ld
, that comment is wrong.I think it would be good to verify what
ld
andld.lld
do here (hopefully they agree), and then change Zig's default, both here and insrc/main.zig
, to be the same.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I found the reason for this:
LD defaults to
sha1
for ELF andmd5
for PELDD defaults to
sha1
for ELF, forcedGUID
for the msvc compatible linker andfast
for wasmso as a whole there doesn't appear to be one right default for all platforms
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's fun. So in summary, defaults look as follows:
ld
,lld
, andmold
all seem to agree onsha1
for ELF.lld
usesfast
for WASM (UUID v5 based on xxHash).ld
usesmd5
for COFF,lld
uses a variation onfast
(both written as a "GUID").ELF and WASM can in theory support any style. But the current scheme that linkers use for COFF only allows up to 16 bytes, which means that COFF "can't" support
sha1
(20 bytes). That's quite unfortunate.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I've argued myself into thinking that
fast
is a good default because it's consistent (ish) across binary formats.The only missing piece here is that
src/link/Coff.zig
needs to pass--build-id
to LLD when the style isfast
. (LLD does not appear to support other styles for COFF at the moment, even though all the non-sha1
styles could be made to work.) Would you mind making that change?