-
-
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.
make Makefile more informative about what julia sysimg build step it …
…is doing
- Loading branch information
Showing
1 changed file
with
7 additions
and
6 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
8e9e68c
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.
Thank you thank you, I really like this. Was hoping you'd split it out from whichever big PR you had done it in :)
8e9e68c
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.
yes, i kept seeing it wasn't on master, cherry-picking it, then forgetting to push it
8e9e68c
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.
👍
8e9e68c
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.
Now how much longer till we can do [chunks of] those .jl files as parallel make targets?
8e9e68c
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.
With my recent work on the cache, I could do that fairly easily, for anything outside of Base (doing it for sub modules is perhaps impossible, perhaps just a pita. I don't know yet)
8e9e68c
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.
Hm, in retrospect this is causing some (probably harmless) scary-looking messages at the start of bootstrap when
VERBOSE=1
- stage 1 https://travis-ci.org/JuliaLang/julia/jobs/40728543#L2732 and stage 2:8e9e68c
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 probably means the
VERBOSE
option for thePRINT_JULIA
target is miscoded8e9e68c
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.
@vtjnash Could you expound upon the use of
$(,)
? Why can't you put a comma literal into that string?8e9e68c
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.
a literal comma is the separator character for Makefile commands. there is no escape character. but interpolation allows us to stick any value in there. almost any string can be used as a variable name. i could use
comma
, but instead chose to use,
as the variable name.