Skip to content

Commit 8ff358a

Browse files
committed
Add tutorial 18
1 parent cc09970 commit 8ff358a

File tree

100 files changed

+10669
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+10669
-0
lines changed

18_backtrace/.cargo/config.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.'cfg(target_os = "none")']
2+
runner = "target/kernel_test_runner.sh"

18_backtrace/.vscode/settings.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.rulers": [100],
4+
"rust-analyzer.cargo.target": "aarch64-unknown-none-softfloat",
5+
"rust-analyzer.cargo.features": ["bsp_rpi3"],
6+
"rust-analyzer.checkOnSave.allTargets": false,
7+
"rust-analyzer.checkOnSave.extraArgs": ["--lib", "--bins"],
8+
"rust-analyzer.lens.debug": false,
9+
"rust-analyzer.lens.run": false
10+
}

18_backtrace/Cargo.lock

+96
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

18_backtrace/Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[workspace]
2+
3+
members = [
4+
"libraries/*",
5+
"kernel",
6+
"kernel_symbols"
7+
]
8+
9+
[profile.release]
10+
lto = true
11+
debug = true

0 commit comments

Comments
 (0)