artiq-zynq/src/Cargo.toml

33 lines
571 B
TOML
Raw Normal View History

2020-04-11 20:19:39 +08:00
[workspace]
members = [
"libc",
"libdyld",
2020-09-01 14:43:16 +08:00
"libconfig",
"libcoreio",
"libdwarf",
"libunwind",
2020-04-28 19:07:49 +08:00
"runtime",
"szl"
]
2020-04-11 20:19:39 +08:00
# 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
2020-04-11 20:19:39 +08:00
[profile.release]
panic = "abort"
debug = true
2020-08-06 10:32:03 +08:00
codegen-units = 1
opt-level = 2
2020-04-11 20:19:39 +08:00
lto = true
[patch.crates-io]
core_io = { path = "./libcoreio" }
compiler_builtins = { git = "https://git.m-labs.hk/M-Labs/compiler-builtins-zynq.git"}