PKGBUILDs/community/rust/bootstrap-config.toml

23 lines
465 B
TOML
Raw Normal View History

2017-07-21 12:43:33 +00:00
[build]
cargo = "/usr/bin/cargo"
rustc = "/usr/bin/rustc"
python = "python2.7"
2017-08-02 00:03:30 +00:00
extended = true
2017-07-21 12:43:33 +00:00
# Verbosity level: 0 == not verbose, 1 == verbose, 2 == very verbose
2017-08-02 00:03:30 +00:00
verbose = 0
2017-07-21 12:43:33 +00:00
# Build the sanitizer runtimes
2018-02-16 19:22:46 +00:00
sanitizers = false
2017-07-21 12:43:33 +00:00
[install]
prefix = "/usr"
[rust]
2018-02-16 19:22:46 +00: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-21 12:43:33 +00:00
2018-02-16 19:22:46 +00:00
debuginfo = true
debuginfo-lines = true
2017-07-21 12:43:33 +00:00
channel = "stable"