rust-lang / portable-simd

The testing ground for the future of portable SIMD in Rust
Apache License 2.0
903 stars 81 forks source link

fix feature flags #389

Closed RalfJung closed 9 months ago

RalfJung commented 9 months ago

const_intrinsic_copy stabilization got reverted in https://github.com/rust-lang/rust/pull/117905.

RalfJung commented 9 months ago

Okay this is painful, we'll need a bunch of careful #[cfg] in the lib.rs that enables exactly the stdarch features needed for each configuration. Enabling features that don't exist for the current target just shows "unknown feature" errors...

calebzulawski commented 9 months ago

Thanks!