diff options
Diffstat (limited to 'doc/tutorial/hello-world.md')
-rw-r--r-- | doc/tutorial/hello-world.md | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/doc/tutorial/hello-world.md b/doc/tutorial/hello-world.md index eabcaf49..25645c73 100644 --- a/doc/tutorial/hello-world.md +++ b/doc/tutorial/hello-world.md @@ -117,11 +117,11 @@ command line: ``` sh $ just-mr build helloworld INFO: Performing repositories setup -INFO: Found 2 repositories to set up +INFO: Found 2 repositories involved INFO: Setup finished, exec ["just","build","-C","...","helloworld"] INFO: Requested target is [["@","tutorial","","helloworld"],{}] INFO: Analysed target [["@","tutorial","","helloworld"],{}] -INFO: Discovered 2 actions, 1 trees, 0 blobs +INFO: Discovered 2 actions, 0 tree overlays, 1 trees, 0 blobs INFO: Building [["@","tutorial","","helloworld"],{}]. INFO: Processed 2 actions, 0 cache hits. INFO: Artifacts built, logical paths are: @@ -166,11 +166,11 @@ object that sets `"CXX"` to `"clang++"`: ``` sh $ just-mr build helloworld -D'{"CXX":"clang++"}' INFO: Performing repositories setup -INFO: Found 2 repositories to set up +INFO: Found 2 repositories involved INFO: Setup finished, exec ["just","build","-C","...","helloworld","-D{\"CXX\":\"clang++\"}"] INFO: Requested target is [["@","tutorial","","helloworld"],{"CXX":"clang++"}] INFO: Analysed target [["@","tutorial","","helloworld"],{"CXX":"clang++"}] -INFO: Discovered 2 actions, 1 trees, 0 blobs +INFO: Discovered 2 actions, 0 tree overlays, 1 trees, 0 blobs INFO: Building [["@","tutorial","","helloworld"],{"CXX":"clang++"}]. INFO: Processed 2 actions, 0 cache hits. INFO: Artifacts built, logical paths are: @@ -272,11 +272,11 @@ change): ``` sh $ just-mr build helloworld INFO: Performing repositories setup -INFO: Found 3 repositories to set up +INFO: Found 3 repositories involved INFO: Setup finished, exec ["just","build","-C","...","helloworld"] INFO: Requested target is [["@","tutorial","","helloworld"],{}] INFO: Analysed target [["@","tutorial","","helloworld"],{}] -INFO: Discovered 2 actions, 1 trees, 0 blobs +INFO: Discovered 2 actions, 0 tree overlays, 1 trees, 0 blobs INFO: Building [["@","tutorial","","helloworld"],{}]. INFO: Processed 2 actions, 0 cache hits. INFO: Artifacts built, logical paths are: @@ -399,11 +399,11 @@ binary can be built with the same command as before (no need to rerun ``` sh $ just-mr build helloworld INFO: Performing repositories setup -INFO: Found 3 repositories to set up +INFO: Found 3 repositories involved INFO: Setup finished, exec ["just","build","-C","...","helloworld"] INFO: Requested target is [["@","tutorial","","helloworld"],{}] INFO: Analysed target [["@","tutorial","","helloworld"],{}] -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, 0 cache hits. INFO: Artifacts built, logical paths are: @@ -417,11 +417,11 @@ run the following command: ``` sh $ just-mr build greet greet INFO: Performing repositories setup -INFO: Found 3 repositories to set up +INFO: Found 3 repositories involved INFO: Setup finished, exec ["just","build","-C","...","greet","greet"] INFO: Requested target is [["@","tutorial","greet","greet"],{}] INFO: Analysed target [["@","tutorial","greet","greet"],{}] -INFO: Discovered 2 actions, 1 trees, 0 blobs +INFO: Discovered 2 actions, 0 tree overlays, 1 trees, 0 blobs INFO: Building [["@","tutorial","greet","greet"],{}]. INFO: Processed 2 actions, 2 cache hits. INFO: Artifacts built, logical paths are: @@ -438,13 +438,13 @@ that library provides. ``` sh $ just-mr analyse greet greet INFO: Performing repositories setup -INFO: Found 3 repositories to set up +INFO: Found 3 repositories involved INFO: Setup finished, exec ["just","analyse","-C","...","greet","greet"] INFO: Requested target is [["@","tutorial","greet","greet"],{}] INFO: Analysed target [["@","tutorial","greet","greet"],{}] INFO: Result of target [["@","tutorial","greet","greet"],{}]: { "artifacts": { - "greet/libgreet.a": {"data":{"id":"c4ba32e2fc1ce267b4245d8885ae7b53405d41a709f853061549ca93aa73a6ac","path":"work/greet/libgreet.a"},"type":"ACTION"} + "greet/libgreet.a": {"data":{"id":"d964a2747015935adc5fd7f06bbd910d5dde99e990436be0b1f7034270b5b11d","path":"work/greet/libgreet.a"},"type":"ACTION"} }, "provides": { "compile-args": [ @@ -455,6 +455,8 @@ INFO: Result of target [["@","tutorial","greet","greet"],{}]: { }, "debug-srcs": { }, + "dwarf-pkg": { + }, "link-args": [ "greet/libgreet.a" ], |