| Age | Commit message (Collapse) | Author |
|
|
|
|
|
Changes the `make` function signature to take an options struct, which
additionally includes `watch: bool`. I intentionally am not exposing
this information to configure phase logic.
Also adds global zig cache to the compiler cache prefixes.
Closes #20600
|
|
and add file system watching integration.
`addDirectoryWatchInput` now returns a `bool` which helps remind the
caller to
1. call addDirectoryWatchInputFromPath on any derived paths
2. but only if the dependency is not already captured by a step
dependency edge.
The make function now recursively walks all directories and adds the
found files to the cache hash rather than incorrectly only adding the
directory name to the cache hash.
closes #20571
|
|
Since I spent a couple minutes debugging this, hopefully this saves
someone some future trouble doing the same.
|
|
And use it to implement InstallDir Step watch integration.
I'm not seeing any events triggered when I run `mkdir` in the watched
directory, however, and I have not yet figured out why.
|
|
Tracked by #14943
|
|
|
|
* `doc/langref` formatting
* upgrade `.{ .path = "..." }` to `b.path("...")`
* avoid using arguments named `self`
* make `Build.Step.Id` usage more consistent
* add `Build.pathResolve`
* use `pathJoin` and `pathResolve` everywhere
* make sure `Build.LazyPath.getPath2` returns an absolute path
|
|
This is no longer needed after the installed headers refactoring.
|
|
|
|
|
|
|
|
closes #16687
|
|
removes functions that take literal paths instead of LazyPath.
|
|
Closes #16187
|
|
|
|
Follow-up actions from #14647
Fixes #14947
|