]> git.lizzy.rs Git - rust.git/blob - 0001-Disable-stdsimd-in-libcore.patch
dbbaf6ca841d1b9071a39e5a27ce2bbbea5d52ff
[rust.git] / 0001-Disable-stdsimd-in-libcore.patch
1 From 09ba4e4d2574ba591524cffe18eb11e05e6726a4 Mon Sep 17 00:00:00 2001
2 From: bjorn3 <bjorn3@users.noreply.github.com>
3 Date: Mon, 24 Sep 2018 18:50:20 +0200
4 Subject: [PATCH] Disable stdsimd in libcore
5
6 ---
7  src/libcore/lib.rs | 2 ++
8  1 file changed, 2 insertions(+)
9
10 diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
11 index 3b7646f..d349a49 100644
12 --- a/src/libcore/lib.rs
13 +++ b/src/libcore/lib.rs
14 @@ -226,6 +226,7 @@ mod nonzero;
15  mod tuple;
16  mod unit;
17  
18 +/*
19  // Pull in the the `coresimd` crate directly into libcore. This is where all the
20  // architecture-specific (and vendor-specific) intrinsics are defined. AKA
21  // things like SIMD and such. Note that the actual source for all this lies in a
22 @@ -256,3 +257,4 @@ mod coresimd;
23  #[stable(feature = "simd_arch", since = "1.27.0")]
24  #[cfg(not(stage0))]
25  pub use coresimd::arch;
26 +*/
27 -- 
28 2.11.0
29