core/rust/config.toml

25 lines
389 B
TOML
Raw Normal View History

2018-03-30 09:00:58 +08:00
[llvm]
ninja = true
2017-07-22 13:21:42 +08:00
[build]
cargo = "/usr/bin/cargo"
rustc = "/usr/bin/rustc"
python = "python2.7"
2017-09-21 21:20:44 +08:00
extended = true
2018-02-19 17:38:57 +08:00
sanitizers = false
2017-07-22 13:21:42 +08:00
[install]
prefix = "/usr"
[rust]
2018-02-19 17:38:57 +08:00
# 0 or the new default of 16 is faster, but can result in worse performance
# https://github.com/rust-lang/rust/issues/47745
codegen-units = 1
2017-07-22 13:21:42 +08:00
2018-02-19 17:38:57 +08:00
debuginfo = true
debuginfo-lines = true
2017-07-22 13:21:42 +08:00
channel = "stable"
2018-03-30 09:00:58 +08:00
rpath = false