Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions book/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
- [Log Frontend](./features/log.md)
- [TUI Frontend](./features/tui.md)
- [Basics](./features/tui/basic.md)
- [Builtin Terminal v.s. External Terminal](./features/tui/term.md)
- [Built-in Terminal and External Terminal](./features/tui/term.md)
- [Backtrace](./features/tui/backtrace.md)
- [Breakpoints](./features/tui/debugger.md)
- [Copy to Clipboard](./features/tui/copy.md)
- [Theme](./features/tui/theme.md)
- [Key Bindings](./features/tui/keys.md)
- [Export Frontend](./features/collect.md)
- [Perfetto Trace Export](./features/collect/perfetto.md)
- [JSON Export](./features/collect/json.md)
- [Perfetto Trace Export](./features/collect/perfetto.md)
- [Filtering](./features/filter.md)
- [Convenient Privilege Elevation](./features/elevation.md)
- [Experimental Features](./features/experimental.md)
Expand All @@ -36,8 +36,8 @@
- [FAQ](./faq.md)
- [Developer Guide](./dev.md)
- [Internal Architecture](./dev/architecture.md)
- [Backend Differences]()
- [Event System]()
- [Backend Differences](./dev/backend-differences.md)
- [Event System](./dev/event-system.md)
- [Tests](./dev/tests.md)
- [Checklist for Cutting a Release](./dev/release.md)
- [Maintaining this Book](./dev/book.md)
- [Maintaining this Book](./dev/book.md)
Binary file added book/assets/external-term.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions book/build-from-src.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To control whether or not to dynamically link to libbpf, libelf and zlib, consul
## Feature Flags

- `recommended`: This enables the recommended functionalities of tracexec
- `ebpf`(experimental): eBPF backend that doesn't use ptrace and could be used for system wide tracing
- `ebpf`: eBPF backend that doesn't use ptrace and can be used for system-wide tracing
- `ebpf-debug`: Not meant for end users. This flag enables debug logging to `/sys/kernel/debug/tracing/trace_pipe` and some debug checks.
- `static`: Statically link libelf, zlib and libbpf.
- `vendored`: Vendoring libelf, zlib and libbpf, implies `static`.
Expand All @@ -43,4 +43,3 @@ To dynamically link to libbpf, turn off default features and enable `recommended
```bash
cargo build --release --no-default-features -F recommended
```

Loading