pca006132
ccf8ae5b5d
SZL no longer do self-extraction for runtime binary, it would boot from SD/ethernet depending on the boot mode settings. This allows a larger runtime binary, so we can optimize for speed in the runtime firmware for better performance, and allow more features to be added later.
33 lines
573 B
TOML
33 lines
573 B
TOML
[workspace]
|
|
members = [
|
|
"libc",
|
|
"libdyld",
|
|
"libconfig",
|
|
"libcoreio",
|
|
"libdwarf",
|
|
"libunwind",
|
|
"runtime",
|
|
"szl"
|
|
]
|
|
|
|
# Note: we are using dev profile for szl to override the opt-level only
|
|
[profile.dev]
|
|
panic = "abort"
|
|
debug = true
|
|
codegen-units = 1
|
|
opt-level = 'z'
|
|
lto = true
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
debug = true
|
|
codegen-units = 1
|
|
opt-level = 's'
|
|
lto = true
|
|
|
|
[patch.crates-io]
|
|
core_io = { path = "./libcoreio" }
|
|
compiler_builtins = { git = "https://git.m-labs.hk/M-Labs/compiler-builtins-zynq.git"}
|