Skip to content

Commit

Permalink
Update the stdarch submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed Jul 15, 2019
1 parent 9bb855c commit 77c14a5
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Expand Up @@ -31,9 +31,9 @@
[submodule "src/llvm-emscripten"]
path = src/llvm-emscripten
url = https://github.com/rust-lang/llvm.git
[submodule "src/stdsimd"]
path = src/stdsimd
url = https://github.com/rust-lang-nursery/stdsimd.git
[submodule "src/stdarch"]
path = src/stdarch
url = https://github.com/rust-lang/stdarch.git
[submodule "src/doc/rustc-guide"]
path = src/doc/rustc-guide
url = https://github.com/rust-lang/rustc-guide.git
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap/dist.rs
Expand Up @@ -903,7 +903,7 @@ impl Step for Src {
"src/libtest",
"src/libterm",
"src/libprofiler_builtins",
"src/stdsimd",
"src/stdarch",
"src/libproc_macro",
"src/tools/rustc-std-workspace-core",
"src/tools/rustc-std-workspace-alloc",
Expand Down
4 changes: 2 additions & 2 deletions src/libcore/lib.rs
Expand Up @@ -228,12 +228,12 @@ mod tuple;
mod unit;

// Pull in the `core_arch` crate directly into libcore. The contents of
// `core_arch` are in a different repository: rust-lang-nursery/stdsimd.
// `core_arch` are in a different repository: rust-lang/stdarch.
//
// `core_arch` depends on libcore, but the contents of this module are
// set up in such a way that directly pulling it here works such that the
// crate uses the this crate as its libcore.
#[path = "../stdsimd/crates/core_arch/src/mod.rs"]
#[path = "../stdarch/crates/core_arch/src/mod.rs"]
#[allow(missing_docs, missing_debug_implementations, dead_code, unused_imports)]
#[unstable(feature = "stdsimd", issue = "48556")]
mod core_arch;
Expand Down
4 changes: 2 additions & 2 deletions src/libstd/Cargo.toml
Expand Up @@ -80,8 +80,8 @@ wasm_syscall = []
# current thread id and accessing/getting the current thread's TCB
wasm-bindgen-threads = []

# Enable std_detect default features for stdsimd:
# https://github.com/rust-lang-nursery/stdsimd/blob/master/crates/std_detect/Cargo.toml
# Enable std_detect default features for stdarch/crates/std_detect:
# https://github.com/rust-lang/stdarch/blob/master/crates/std_detect/Cargo.toml
std_detect_file_io = []
std_detect_dlsym_getauxval = []

Expand Down
4 changes: 2 additions & 2 deletions src/libstd/lib.rs
Expand Up @@ -492,12 +492,12 @@ mod memchr;
pub mod rt;

// Pull in the `std_detect` crate directly into libstd. The contents of
// `std_detect` are in a different repository: rust-lang-nursery/stdsimd.
// `std_detect` are in a different repository: rust-lang/stdarch.
//
// `std_detect` depends on libstd, but the contents of this module are
// set up in such a way that directly pulling it here works such that the
// crate uses the this crate as its libstd.
#[path = "../stdsimd/crates/std_detect/src/mod.rs"]
#[path = "../stdarch/crates/std_detect/src/mod.rs"]
#[allow(missing_debug_implementations, missing_docs, dead_code)]
#[unstable(feature = "stdsimd", issue = "48556")]
#[cfg(not(test))]
Expand Down
1 change: 1 addition & 0 deletions src/stdarch
Submodule stdarch added at 8cb42c
1 change: 0 additions & 1 deletion src/stdsimd
Submodule stdsimd deleted from 4bf456
2 changes: 1 addition & 1 deletion src/tools/tidy/src/lib.rs
Expand Up @@ -59,7 +59,7 @@ fn filter_dirs(path: &Path) -> bool {
"src/tools/lld",
"src/tools/lldb",
"src/target",
"src/stdsimd",
"src/stdarch",
"src/rust-sgx",
"target",
"vendor",
Expand Down

0 comments on commit 77c14a5

Please sign in to comment.