Files
rust/library/stdarch
Folkert de Vries e0b634ecae reset the host linker
The host's linker is used to compile build.rs files (e.g. for libc).
When the user configures a custom liker (e.g. mold) in their own
.cargo/config.toml or ~/.cargo/config.toml, that linker will likely not
work when running run-docker.sh. So, we now reset it to `cc`, which
should always be installed in the docker container.
2025-04-23 10:38:19 +00:00
..
2025-04-23 10:38:19 +00:00
2025-04-23 10:38:19 +00:00
2025-02-14 16:40:26 +00:00
2023-05-15 17:34:11 +02:00
2025-01-16 14:29:19 +00:00
2017-09-25 12:43:06 -07:00
2017-09-25 12:43:06 -07:00
2025-01-16 14:29:19 +00:00

stdarch - Rust's standard library SIMD components

Actions Status

Crates

This repository contains two main crates:

  • core_arch implements core::arch - Rust's core library architecture-specific intrinsics, and

  • std_detect implements std::detect - Rust's standard library run-time CPU feature detection.

The std::simd component now lives in the packed_simd_2 crate.