2016-09-02 03:55:29 -05:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"bootstrap",
|
|
|
|
"rustc",
|
2017-02-15 10:53:18 -06:00
|
|
|
"libstd",
|
|
|
|
"libtest",
|
2016-09-02 03:55:29 -05:00
|
|
|
"tools/cargotest",
|
|
|
|
"tools/compiletest",
|
|
|
|
"tools/error_index_generator",
|
|
|
|
"tools/linkchecker",
|
|
|
|
"tools/rustbook",
|
|
|
|
"tools/tidy",
|
2017-01-24 16:37:04 -06:00
|
|
|
"tools/build-manifest",
|
2017-01-28 15:38:06 -06:00
|
|
|
"tools/qemu-test-client",
|
|
|
|
"tools/qemu-test-server",
|
2016-09-02 03:55:29 -05:00
|
|
|
]
|
2016-11-16 11:19:02 -06:00
|
|
|
|
|
|
|
# Curiously, compiletest will segfault if compiled with opt-level=3 on 64-bit
|
|
|
|
# MSVC when running the compile-fail test suite when a should-fail test panics.
|
|
|
|
# But hey if this is removed and it gets past the bots, sounds good to me.
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 2
|
|
|
|
[profile.bench]
|
|
|
|
opt-level = 2
|
|
|
|
|
|
|
|
# These options are controlled from our rustc wrapper script, so turn them off
|
|
|
|
# here and have them controlled elsewhere.
|
|
|
|
[profile.dev]
|
|
|
|
debug = false
|
|
|
|
debug-assertions = false
|
|
|
|
[profile.test]
|
|
|
|
debug = false
|
|
|
|
debug-assertions = false
|