zig/lib/std/Build/Step
Jakub Konka e8b613783f check-object: remove wildcard matchers as they are too clunky
Instead, we now have a looser helper called `checkContains(...)`
that will match on any occurrence similarly to `std.mem.indexOf()`.

While at it, I have cleaned up other combinators to make the entire
API more consistent, and so:
* `checkStart(phrase)` is now `checkStart()` followed by
`checkExact(phrase)`
* `checkNext(phrase)` if matching exactly is now `checkExact(phrase)`
* `checkNext(phrase)` if matching loosely is now `checkContains(phrase)`
* `checkNext(phrase)` if matching exactly with var extractors is now
`checkExtract(phrase)`

Finally, `ElfDumper` is now dumping contents of `.symtab` and `.dynsym`
symbol tables. I have also removed dumping of symtabs as optional - they
are now always dumped which cleaned up the implementation even more.
2023-07-20 20:01:06 +02:00
..
CheckFile.zig std.Build: use Step.* instead of *Step 2023-05-03 20:55:29 -07:00
CheckObject.zig check-object: remove wildcard matchers as they are too clunky 2023-07-20 20:01:06 +02:00
Compile.zig test/link: add shared-memory test for WebAssembly 2023-07-19 17:22:46 +02:00
ConfigHeader.zig std.Build: omit newline from last line 2023-06-26 04:25:14 -07:00
Fmt.zig std.Build: use Step.* instead of *Step 2023-05-03 20:55:29 -07:00
InstallArtifact.zig std.Build: use Step.* instead of *Step 2023-05-03 20:55:29 -07:00
InstallDir.zig Build: make InstallDirStep use a FileSource 2023-06-26 15:59:53 -07:00
InstallFile.zig std.Build: use Step.* instead of *Step 2023-05-03 20:55:29 -07:00
ObjCopy.zig std.Build: use Step.* instead of *Step 2023-05-03 20:55:29 -07:00
Options.zig std: replace builtin.Version with SemanticVersion 2023-06-17 13:17:34 -07:00
RemoveDir.zig std.Build: use Step.* instead of *Step 2023-05-03 20:55:29 -07:00
Run.zig Changed Step.Run's stdin to accept FileSource (#16358) 2023-07-09 15:51:41 -04:00
TranslateC.zig std.Build: Add methods for creating modules from a TranslateC object. 2023-07-11 01:38:04 -07:00
WriteFile.zig Fixes WriteFile.getFileSource failure on Windows (#15730) 2023-05-24 14:26:07 -07:00