Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ hardware/silicon/**/*.bin
# jess wasm components: rebuilt by tools/appcompose/build-and-verify.sh
app/*/target/
app/*/*.wasm
.scratch/tprobe/
11 changes: 11 additions & 0 deletions app/gust-hal-tick/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# The RT1176 embedder needs relocations and a heap symbol to place this component
# into a statically-sized partition. Neither is emitted by default: lld defines
# __heap_base synthetically but does not export it, and emits no reloc.* sections
# unless asked. This is the SAME defect jess reported against relay's publish path
# (tools/publish-gate/check-consumable.sh C4/C5) — it applies to jess's own output too.
[target.wasm32-unknown-unknown]
rustflags = [
"-C", "link-arg=--emit-relocs",
"-C", "link-arg=--export=__heap_base",
"-C", "link-arg=--export=__data_end",
]
341 changes: 341 additions & 0 deletions app/gust-hal-tick/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions app/gust-hal-tick/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "jess-gust-hal-tick"
version = "0.1.0"
edition = "2021"
publish = false

[lib]
crate-type = ["cdylib"]

[dependencies]
jess-bump-alloc = { path = "../bump-alloc" }
wit-bindgen = { version = "0.52", default-features = false, features = ["macros", "realloc", "bitflags"] }

[profile.release]
opt-level = "s"
lto = true
panic = "abort"
Loading
Loading