-
Notifications
You must be signed in to change notification settings - Fork 4.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
[wasm] Compile .bc->.o in parallel, before passing to the linker #54053
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
8848879
Utils.RunProcess: some refactoring
radical aefb115
[wasm] Compile .bc -> .o files, in parallel
radical 1909fcc
Disable failing tests
radical 24338c6
Merge remote-tracking branch 'origin/main' into wasm-bc-third
radical e7b638c
[wasm] EmccCompile task: Use msbuild's new resource management API
radical 9f23826
cleanup
radical f87f705
Correctly handle non-aot native case
radical 093e133
Merge remote-tracking branch 'origin/main' into wasm-bc-third
radical d7f867e
Merge remote-tracking branch 'origin/main' into wasm-bc-third
radical f562d2e
Merge branch 'main' into wasm-bc-to-o-parallel
radical f20240b
Merge remote-tracking branch 'origin/main' into wasm-bc-third
radical 6e90a22
Merge remote-tracking branch 'rf/wasm-bc-to-o-parallel' into wasm-bc-…
radical d816231
Merge remote-tracking branch 'origin/main' into wasm-bc-to-o-parallel
radical 1be69d6
Disable Microsoft.NETCore.Platforms.Tests on wasm, for local builds too
radical 76d370a
Merge remote-tracking branch 'origin/main' into wasm-bc-to-o-parallel
radical 5694644
Undo 16.10.0 msbuild bump
radical 9374c61
Merge remote-tracking branch 'origin/main' into wasm-bc-to-o-parallel
radical b7f52e4
undo test exclusion change related to the 16.10.0 bump
radical f3a45d7
disable Microsoft.NETCore.Platforms.Tests on wasm
radical 38e4fb8
[wasm] Disable System.IO.MemoryMappedFiles.Tests
radical ad2255c
Merge remote-tracking branch 'origin/main' into wasm-bc-to-o-parallel
radical e677e8a
Merge remote-tracking branch 'origin/main' into wasm-bc-to-o-parallel
radical 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
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
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
Oops, something went wrong.
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.
We might also try to use
-Wl,-O0
and-Wl,-lto-O0
here? (context: emscripten-core/emscripten#14485 (comment))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.
Sure, we can try all that in a follow up PR. Unless, one of those is definitely better than
-O0
, then we can add it here itself.