about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-05-14 14:43:43 -0700
committerAlex Crichton <alex@alexcrichton.com>2019-05-17 07:17:15 -0700
commit3c9790e4293e41a1a45a50eaee4e76a1fb64d5f8 (patch)
tree3f4a25693f8d574e92ec21a2ad22139bf2b016b3 /src/bootstrap
parent39401465da4ce27aeeb2c2a26133ac35c63aa515 (diff)
downloadrust-3c9790e4293e41a1a45a50eaee4e76a1fb64d5f8.tar.gz
rust-3c9790e4293e41a1a45a50eaee4e76a1fb64d5f8.zip
Update the compiler_builtins crate
This updates to 0.1.13 for `compiler_builtins`, published to fix a few
issues. The feature changes here are updated because `compiler_builtins`
no longer enables the `c` feature by default but we want to do so
through our build still.

Closes #60747
Closes #60782
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs
index 9c4e856f0b8..e1cdd226fd6 100644
--- a/src/bootstrap/compile.rs
+++ b/src/bootstrap/compile.rs
@@ -168,7 +168,7 @@ pub fn std_cargo(builder: &Builder<'_>,
             .arg("--manifest-path")
             .arg(builder.src.join("src/liballoc/Cargo.toml"))
             .arg("--features")
-            .arg("compiler-builtins-mem");
+            .arg("compiler-builtins-mem compiler-builtins-c");
     } else {
         let features = builder.std_features();