-
- Downloads
wip (its a mess)
Showing
- Cargo.lock 28 additions, 35 deletionsCargo.lock
- Cargo.toml 19 additions, 4 deletionsCargo.toml
- compile.txt 0 additions, 0 deletionscompile.txt
- examples/cortex_m_test2.rs 27 additions, 0 deletionsexamples/cortex_m_test2.rs
- examples/cortex_m_test_nightly.rs 3 additions, 18 deletionsexamples/cortex_m_test_nightly.rs
- examples/expand.rs 51 additions, 0 deletionsexamples/expand.rs
- examples/klee_cortex_m_rt_test.rs 19 additions, 11 deletionsexamples/klee_cortex_m_rt_test.rs
- examples/klee_cortex_m_rt_test2.rs 28 additions, 0 deletionsexamples/klee_cortex_m_rt_test2.rs
- examples/klee_cortex_m_rt_test3.rs 44 additions, 0 deletionsexamples/klee_cortex_m_rt_test3.rs
- examples/klee_cortex_m_test_stable copy.rs 202 additions, 0 deletionsexamples/klee_cortex_m_test_stable copy.rs
- examples/klee_cortex_m_test_stable.rs 138 additions, 71 deletionsexamples/klee_cortex_m_test_stable.rs
- examples/klee_init.rs 52 additions, 0 deletionsexamples/klee_init.rs
- examples/klee_init_expand.rs 54 additions, 0 deletionsexamples/klee_init_expand.rs
- examples/klee_rtfm_expand.rs 29 additions, 0 deletionsexamples/klee_rtfm_expand.rs
- examples/klee_rtfm_init_test.rs 26 additions, 0 deletionsexamples/klee_rtfm_init_test.rs
- examples/klee_test copy 2.rs 33 additions, 0 deletionsexamples/klee_test copy 2.rs
... | ... | @@ -37,22 +37,37 @@ optional = true |
# #features = ["inline-asm", "klee-analysis"] | ||
[patch.crates-io] | ||
vcell = { git = "https://github.com/perlindgren/vcell.git", branch = "trustit" } | ||
cortex-m = { git = "https://github.com/perlindgren/cortex-m.git", branch = "trustit" } | ||
#vcell = { git = "https://github.com/perlindgren/vcell.git", branch = "trustit" } | ||
vcell = { path = "../vcell" } | ||
#volatile-register = { git = "https://github.com/perlindgren/volatile-register.git", branch = "trustit" } | ||
#volatile-register = { path = "../volatile-register" } | ||
#cortex-m = { git = "https://github.com/perlindgren/cortex-m.git", branch = "trustit" } | ||
cortex-m = { path = "../cortex-m" } | ||
#cortex-m-rt = { git = "https://github.com/perlindgren/cortex-m-rt.git", branch = "trustit" } | ||
cortex-m-rt = { path = "../cortex-m-rt" } | ||
[features] | ||
klee-analysis = [ "vcell/klee-analysis", "cortex-m/klee-analysis", "cortex-m-rt/klee-analysis" ] | ||
klee-analysis = [ | ||
"vcell/klee-analysis", | ||
# "volatile-register/klee-analysis", | ||
"cortex-m/klee-analysis", | ||
"cortex-m-rt/klee-analysis" | ||
] | ||
inline-asm = ["cortex-m/inline-asm"] | ||
rtpro = [ "cortex-m-rtfm/klee-analysis", "lm3s6965" ] | ||
[profile.dev] | ||
panic = "abort" | ||
incremental = false | ||
# incremental = false | ||
lto = true | ||
# codegen-units = 1 | ||
[profile.release] | ||
debug = true | ||
panic = "abort" | ||
incremental = false | ||
lto = true | ||
codegen-units = 1 |
compile.txt
0 → 100644
examples/cortex_m_test2.rs
0 → 100644
examples/expand.rs
0 → 100644
examples/klee_cortex_m_rt_test2.rs
0 → 100644
examples/klee_cortex_m_rt_test3.rs
0 → 100644
examples/klee_cortex_m_test_stable copy.rs
0 → 100644
examples/klee_init.rs
0 → 100644
examples/klee_init_expand.rs
0 → 100644
examples/klee_rtfm_expand.rs
0 → 100644
examples/klee_rtfm_init_test.rs
0 → 100644
examples/klee_test copy 2.rs
0 → 100644
Please register or sign in to comment