-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add info about debugging during julia's bootstrap
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
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
c991a23
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.
Jameson pointed out that the full path to sysimg is no longer necessary, so you can do
julia -C native --build sys sysimg.jl
(orsys0
)c991a23
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.
Also, I try to avoid debugging bootstrap at all costs now:
c991a23
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.
You're my new best friend. This hadn't penetrated my consciousness yet, so thanks for the reminder about its existence!
For what I'm doing now, the old way isn't too bad, because almost all of my changes are to the C code (which, paradoxically, is in a few ways easier because building is so much faster). But for the future, I'm totally sold on this.
I'll add a version of this to the docs.