27 lines
660 B
TOML
27 lines
660 B
TOML
[workspace]
|
|
members = ["./library/sysroot"]
|
|
|
|
[patch.crates-io]
|
|
rustc-std-workspace-core = { path = "./library/rustc-std-workspace-core" }
|
|
rustc-std-workspace-alloc = { path = "./library/rustc-std-workspace-alloc" }
|
|
rustc-std-workspace-std = { path = "./library/rustc-std-workspace-std" }
|
|
|
|
[profile.dev]
|
|
lto = "off"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
incremental = true
|
|
lto = "off"
|
|
|
|
# Mandatory for correctly compiling compiler-builtins
|
|
[profile.dev.package.compiler_builtins]
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
codegen-units = 10000
|
|
|
|
[profile.release.package.compiler_builtins]
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
codegen-units = 10000
|