artiq-zynq/src/Cargo.toml

34 lines
583 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" }
2020-10-13 19:21:22 +08:00
compiler_builtins = { git = "https://github.com/pca006132/compiler-builtins.git", branch = "pr" }