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/third-party-software.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/third-party-software.md')
-rw-r--r-- | doc/tutorial/third-party-software.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/tutorial/third-party-software.md b/doc/tutorial/third-party-software.md index 0016f6b8..951a7cbb 100644 --- a/doc/tutorial/third-party-software.md +++ b/doc/tutorial/third-party-software.md @@ -212,12 +212,12 @@ repositories: ``` sh $ just-mr build helloworld INFO: Performing repositories setup -INFO: Found 5 repositories to set up +INFO: Found 5 repositories involved INFO: Setup finished, exec ["just","build","-C","...","helloworld"] INFO: Requested target is [["@","tutorial","","helloworld"],{}] INFO: Analysed target [["@","tutorial","","helloworld"],{}] INFO: Export targets found: 0 cached, 0 uncached, 1 not eligible for caching -INFO: Discovered 7 actions, 3 trees, 0 blobs +INFO: Discovered 7 actions, 0 tree overlays, 3 trees, 0 blobs INFO: Building [["@","tutorial","","helloworld"],{}]. INFO: Processed 7 actions, 1 cache hits. INFO: Artifacts built, logical paths are: @@ -231,12 +231,12 @@ repository `fmtlib` must be specified via the `--main` option: ``` sh $ just-mr --main fmtlib build fmt INFO: Performing repositories setup -INFO: Found 4 repositories to set up +INFO: Found 4 repositories involved INFO: Setup finished, exec ["just","build","-C","...","fmt"] INFO: Requested target is [["@","fmtlib","","fmt"],{}] INFO: Analysed target [["@","fmtlib","","fmt"],{}] INFO: Export targets found: 0 cached, 0 uncached, 1 not eligible for caching -INFO: Discovered 3 actions, 1 trees, 0 blobs +INFO: Discovered 3 actions, 0 tree overlays, 1 trees, 0 blobs INFO: Building [["@","fmtlib","","fmt"],{}]. INFO: Processed 3 actions, 3 cache hits. INFO: Artifacts built, logical paths are: @@ -260,8 +260,8 @@ versioning first: $ git init . $ git add tutorial-defaults fmt-layer $ git commit -m "fix compile flags and fmt targets layer" -[master (root-commit) 9c3a98b] fix compile flags and fmt targets layer - 4 files changed, 29 insertions(+) +[master (root-commit) 0337c65] fix compile flags and fmt targets layer + 4 files changed, 37 insertions(+) create mode 100644 fmt-layer/TARGETS create mode 100644 fmt-layer/include/fmt/TARGETS create mode 100644 fmt-layer/src/TARGETS @@ -326,12 +326,12 @@ the benefits of the target cache should be visible on the second build: ``` sh $ just-mr build helloworld INFO: Performing repositories setup -INFO: Found 5 repositories to set up +INFO: Found 5 repositories involved INFO: Setup finished, exec ["just","build","-C","...","helloworld"] INFO: Requested target is [["@","tutorial","","helloworld"],{}] INFO: Analysed target [["@","tutorial","","helloworld"],{}] INFO: Export targets found: 0 cached, 1 uncached, 0 not eligible for caching -INFO: Discovered 7 actions, 3 trees, 0 blobs +INFO: Discovered 7 actions, 0 tree overlays, 3 trees, 0 blobs INFO: Building [["@","tutorial","","helloworld"],{}]. INFO: Processed 7 actions, 7 cache hits. INFO: Artifacts built, logical paths are: @@ -340,12 +340,12 @@ INFO: Backing up artifacts of 1 export targets $ $ just-mr build helloworld INFO: Performing repositories setup -INFO: Found 5 repositories to set up +INFO: Found 5 repositories involved INFO: Setup finished, exec ["just","build","-C","...","helloworld"] INFO: Requested target is [["@","tutorial","","helloworld"],{}] INFO: Analysed target [["@","tutorial","","helloworld"],{}] INFO: Export targets found: 1 cached, 0 uncached, 0 not eligible for caching -INFO: Discovered 4 actions, 2 trees, 0 blobs +INFO: Discovered 4 actions, 0 tree overlays, 2 trees, 0 blobs INFO: Building [["@","tutorial","","helloworld"],{}]. INFO: Processed 4 actions, 4 cache hits. INFO: Artifacts built, logical paths are: |