Reproducible Builds: Ensure object files are sorted#254
Closed
kpcyrd wants to merge 1 commit intoWebAssembly:mainfrom
Closed
Reproducible Builds: Ensure object files are sorted#254kpcyrd wants to merge 1 commit intoWebAssembly:mainfrom
kpcyrd wants to merge 1 commit intoWebAssembly:mainfrom
Conversation
sbc100
reviewed
Aug 25, 2021
Member
sbc100
left a comment
There was a problem hiding this comment.
Maybe worth adding a comment about where we are sorting these? Specifically so that the inputs llvm-ar are sort, I think?
It makes me wonder if we should do that sorting instead at the point of calling llvm-ar instead?
| "$(WASM_CC)" $(CFLAGS) -MD -MP -o $@ -c $< | ||
|
|
||
| -include $(shell find $(OBJDIR) -name \*.d) | ||
| -include $(shell find $(OBJDIR) -name \*.d | LC_ALL=C sort) |
Member
There was a problem hiding this comment.
I don't think this change should be needed.
Collaborator
|
Closing... it looks like #399 already solved this. Feel free to reopen if that didn't cover everything! |
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.
This fixes a reproducible builds issue that was found in tinygo that was found by the Reproducible Arch Linux setup.
This patch sorts the
.cfiles, which ensures a deterministic order for.ofiles afterpatsubst./usr/lib/tinygo/lib/wasi-libc/sysroot/lib/wasm32-wasi/libc.a:
Details