zig/lib/std/Build
Andrew Kelley e0ffac4e3c introduce a web interface for fuzzing
* new .zig-cache subdirectory: 'v'
  - stores coverage information with filename of hash of PCs that want
    coverage. This hash is a hex encoding of the 64-bit coverage ID.
* build runner
  * fixed bug in file system inputs when a compile step has an
    overridden zig_lib_dir field set.
  * set some std lib options optimized for the build runner
    - no side channel mitigations
    - no Transport Layer Security
    - no crypto fork safety
  * add a --port CLI arg for choosing the port the fuzzing web interface
    listens on. it defaults to choosing a random open port.
  * introduce a web server, and serve a basic single page application
    - shares wasm code with autodocs
    - assets are created live on request, for convenient development
      experience. main.wasm is properly cached if nothing changes.
    - sources.tar comes from file system inputs (introduced with the
      `--watch` feature)
  * receives coverage ID from test runner and sends it on a thread-safe
    queue to the WebServer.
* test runner
  - takes a zig cache directory argument now, for where to put coverage
    information.
  - sends coverage ID to parent process
* fuzzer
  - puts its logs (in debug mode) in .zig-cache/tmp/libfuzzer.log
  - computes coverage_id and makes it available with
    `fuzzer_coverage_id` exported function.
  - the memory-mapped coverage file is now namespaced by the coverage id
    in hex encoding, in `.zig-cache/v`
* tokenizer
  - add a fuzz test to check that several properties are upheld
2024-08-07 00:48:32 -07:00
..
Cache std.Build.Cache.Path: fix the format method 2024-07-12 00:14:08 -07:00
Step introduce a web interface for fuzzing 2024-08-07 00:48:32 -07:00
Cache.zig add sub-compilation cache inputs to parents in whole mode 2024-07-24 19:40:54 -07:00
Fuzz.zig introduce a web interface for fuzzing 2024-08-07 00:48:32 -07:00
Module.zig add the build system API for enabling fuzzing 2024-07-22 13:07:02 -07:00
Step.zig introduce a web interface for fuzzing 2024-08-07 00:48:32 -07:00
Watch.zig Watch.zig: add initial windows implementation 2024-07-27 11:32:43 -04:00