-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Updates and cleanup in self hosted compiler #3748
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
8edf273
self hosted compiler: fix zig_llvm.h function signature
Vexu b06e5b8
self hosted compiler: fix internal build info
Vexu cb20093
self hosted compiler: remove await async pattern
Vexu 110e575
self hosted compiler: replace Promise with Frame and AnyFrame
Vexu 6dd4a27
self hosted compiler: update to new std.event
Vexu 9394d14
self hosted compiler: unify Target and std.Target
Vexu 7000316
self hosted compiler: fix calling convention in type.zig
Vexu c6076a1
self hosted compiler: use enum literals
Vexu 7a24334
self hosted compiler: small fixes to imports and declarations
Vexu 56ea07f
self hosted compiler: comment out event.fs stuff
Vexu bca6723
self hosted compiler: move functions to util.zigto avoid defining llv…
Vexu 86d9563
self hosted compiler: various small fixes
Vexu 03cc816
Merge branch 'master' into modernize-stage2
Vexu 133579d
fix casts
Vexu d40f204
self hosted compiler: small miscellaneous fixes
Vexu 6c64f07
add workaround to child_process.zig
Vexu b9ef360
re-enable stage2 tests
Vexu 89310da
Merge branch 'master' into modernize-stage2
Vexu 010494d
only test stage2 on linux
Vexu 0cbf00a
self hosted compiler: final small fixes to get it compiling
Vexu 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
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.
I don't think the stage2 tests are ready to be resurrected yet, if you look at
src-self-hosted/test.zig
, it creates its own event loop, and tries to do evented I/O, butzig test
doesn't support that yet, so it's this weird mixture of evented and blocking (which amazingly apparently did work successfully on Linux and macOS (or maybe not, I see "stage2...SKIP" in the log output)