-
- Downloads
rtfm-klee
Showing
- .cargo/config 9 additions, 1 deletion.cargo/config
- .vscode/tasks.json 12 additions, 0 deletions.vscode/tasks.json
- Cargo.toml 8 additions, 3 deletionsCargo.toml
- README.md 64 additions, 0 deletionsREADME.md
- examples/empty.rs 39 additions, 0 deletionsexamples/empty.rs
- klee/.gitignore 1 addition, 0 deletionsklee/.gitignore
- klee/Cargo.toml 8 additions, 0 deletionsklee/Cargo.toml
- klee/src/lang_items.rs 25 additions, 0 deletionsklee/src/lang_items.rs
- klee/src/lib.rs 76 additions, 0 deletionsklee/src/lib.rs
- klee/src/ll.rs 7 additions, 0 deletionsklee/src/ll.rs
- klee/tasks.txt 2 additions, 0 deletionsklee/tasks.txt
- macros/Cargo.toml 3 additions, 0 deletionsmacros/Cargo.toml
- macros/src/lib.rs 11 additions, 9 deletionsmacros/src/lib.rs
- src/lib.rs 3 additions, 3 deletionssrc/lib.rs
... | ... | @@ -18,8 +18,8 @@ untagged-option = "0.1.1" |
rtfm-core = "0.1.0" | ||
cortex-m-rtfm-macros = { path = "macros" } | ||
[target.'cfg(target_arch = "x86_64")'.dev-dependencies] | ||
compiletest_rs = "0.2.8" | ||
#[target.'cfg(target_arch = "x86_64")'.dev-dependencies] | ||
#compiletest_rs = "0.2.8" | ||
[dev-dependencies.cortex-m-rt] | ||
features = ["abort-on-panic"] | ||
... | ... | @@ -30,15 +30,20 @@ git = "https://gitlab.henriktjader.com/pln/STM32F40x" |
features = ["rt"] | ||
version = "0.2.0" | ||
[dev-dependencies.klee] | ||
path = "./klee" | ||
[features] | ||
wcet_bkpt = [] | ||
wcet_nop = [] | ||
klee = [] | ||
klee_mode = ["cortex-m-rtfm-macros/klee_mode"] | ||
[profile.dev] | ||
codegen-units = 1 | ||
incremental = false | ||
panic = "abort" | ||
[profile.release] | ||
lto = true | ||
debug = true | ||
panic = "abort" |
examples/empty.rs
0 → 100644
klee/.gitignore
0 → 100644
klee/Cargo.toml
0 → 100644
klee/src/lang_items.rs
0 → 100644
klee/src/lib.rs
0 → 100644
klee/src/ll.rs
0 → 100644
klee/tasks.txt
0 → 100644
Please register or sign in to comment