-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sequence diagram to README to help explain build-bom operation
- Loading branch information
Showing
4 changed files
with
145 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
shape: sequence_diagram | ||
build-bom | ||
build tool | ||
"Project's build tool": { | ||
build tool."make,\ncmake,\nmeson,\nother ..." | ||
} | ||
build-bom.run -> build tool.all : fork + ptrace | ||
build tool.all -> compile.run | ||
compile.run -> build-bom.run.start : ptrace: "starting" | ||
build-bom.run.start -> compile.run : ptrace: "ok, continue" | ||
compile.run -> build-bom.run.end : ptrace: "finishing" | ||
build-bom.run.end -> clang.run : -emit-llvm | ||
clang.run -> build-bom.run.end : llvm bitcode | ||
build-bom."Insert llvm bitcode in compile's ELF obj file" | ||
build-bom.run.end -> compile.run { | ||
style.stroke-dash: 5 | ||
} | ||
build-bom.run.end -> compile.run : ptrace: "ok, continue" | ||
compile.run -> build tool.all | ||
build tool."Repeats above as needed for build" | ||
build tool.all -> build-bom.run |
Oops, something went wrong.