diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-05-23 14:34:38 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2025-05-23 16:45:16 +0200 |
commit | 2ada58e9a8c7b95dd7da5bfe8a6f1e16bb7686f5 (patch) | |
tree | 7de2ea6eb8299026e75f04282f71580179f67918 /doc/tutorial/getting-started.md | |
parent | 553c4b0a55eee519e2d98d6d8c96ec3af44183e4 (diff) | |
download | justbuild-2ada58e9a8c7b95dd7da5bfe8a6f1e16bb7686f5.tar.gz |
tutorial: Update example outputs in all chapters
...to match the ones produces by latest binaries and rules.
Diffstat (limited to 'doc/tutorial/getting-started.md')
-rw-r--r-- | doc/tutorial/getting-started.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/tutorial/getting-started.md b/doc/tutorial/getting-started.md index a97aea60..7a373aeb 100644 --- a/doc/tutorial/getting-started.md +++ b/doc/tutorial/getting-started.md @@ -58,7 +58,7 @@ To build a target, we need to run `just` with the subcommand `build`: $ just build greeter INFO: Requested target is [["@","","","greeter"],{}] INFO: Analysed target [["@","","","greeter"],{}] -INFO: Discovered 1 actions, 0 trees, 0 blobs +INFO: Discovered 1 actions, 0 tree overlays, 0 trees, 0 blobs INFO: Building [["@","","","greeter"],{}]. INFO: Processed 1 actions, 0 cache hits. INFO: Artifacts built, logical paths are: @@ -77,7 +77,7 @@ and specify the output directory: $ just install greeter -o . INFO: Requested target is [["@","","","greeter"],{}] INFO: Analysed target [["@","","","greeter"],{}] -INFO: Discovered 1 actions, 0 trees, 0 blobs +INFO: Discovered 1 actions, 0 tree overlays, 0 trees, 0 blobs INFO: Building [["@","","","greeter"],{}]. INFO: Processed 1 actions, 1 cache hits. INFO: Artifacts can be found in: @@ -104,7 +104,7 @@ a text file, as well as for piping the artifact to another program. $ just build greeter -P out.txt INFO: Requested target is [["@","","","greeter"],{}] INFO: Analysed target [["@","","","greeter"],{}] -INFO: Discovered 1 actions, 0 trees, 0 blobs +INFO: Discovered 1 actions, 0 tree overlays, 0 trees, 0 blobs INFO: Building [["@","","","greeter"],{}]. INFO: Processed 1 actions, 1 cache hits. INFO: Artifacts built, logical paths are: @@ -113,7 +113,7 @@ Hello World $ just build -p INFO: Requested target is [["@","","","greeter"],{}] INFO: Analysed target [["@","","","greeter"],{}] -INFO: Discovered 1 actions, 0 trees, 0 blobs +INFO: Discovered 1 actions, 0 tree overlays, 0 trees, 0 blobs INFO: Building [["@","","","greeter"],{}]. INFO: Processed 1 actions, 1 cache hits. INFO: Artifacts built, logical paths are: @@ -178,7 +178,7 @@ As we only request targets, no conflicts arise. $ just build upper -p INFO: Requested target is [["@","","","upper"],{}] INFO: Analysed target [["@","","","upper"],{}] -INFO: Discovered 1 actions, 0 trees, 0 blobs +INFO: Discovered 1 actions, 0 tree overlays, 0 trees, 0 blobs INFO: Building [["@","","","upper"],{}]. INFO: Processed 1 actions, 0 cache hits. INFO: Artifacts built, logical paths are: @@ -187,7 +187,7 @@ WORLD $ just build greeter -p INFO: Requested target is [["@","","","greeter"],{}] INFO: Analysed target [["@","","","greeter"],{}] -INFO: Discovered 1 actions, 0 trees, 0 blobs +INFO: Discovered 1 actions, 0 tree overlays, 0 trees, 0 blobs INFO: Building [["@","","","greeter"],{}]. INFO: Processed 1 actions, 1 cache hits. INFO: Artifacts built, logical paths are: @@ -217,7 +217,7 @@ artifact of that target) as such a mapping is necessarily conflict free. $ just build both INFO: Requested target is [["@","","","both"],{}] INFO: Analysed target [["@","","","both"],{}] -INFO: Discovered 2 actions, 0 trees, 0 blobs +INFO: Discovered 2 actions, 0 tree overlays, 0 trees, 0 blobs INFO: Building [["@","","","both"],{}]. INFO: Processed 2 actions, 2 cache hits. INFO: Artifacts built, logical paths are: |