Merge pull request #560 from RalfJung/libstd-features

build libstd with minimal features
This commit is contained in:
Ralf Jung 2018-12-02 14:45:11 +01:00 committed by GitHub
commit c9bb212cae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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]