build libstd with minimal features

This commit is contained in:
Ralf Jung 2018-12-02 14:03:29 +01:00
parent fe1769566b
commit e12d4bc70c

View File

@ -155,6 +155,9 @@ fn setup(ask_user: bool) {
File::create(dir.join("Xargo.toml")).unwrap()
.write_all(br#"
[dependencies.std]
default_features = false
# We need the `panic_unwind` feature because we use the `unwind` panic strategy.
# Using `abort` works for libstd, but then libtest will not compile.
features = ["panic_unwind"]
[dependencies.test]