We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fa99a1 commit 5a20376Copy full SHA for 5a20376
ci/run.sh
@@ -14,15 +14,13 @@ RUSTFLAGS="$RUSTFLAGS --cfg stdsimd_strict"
14
15
# FIXME: on armv7 neon intrinsics require the neon target-feature to be
16
# unconditionally enabled.
17
-# FIXME: powerpc (32-bit) must be compiled with altivec
18
# FIXME: on powerpc (32-bit) and powerpc64 (big endian) disable
19
# the instr tests.
20
case ${TARGET} in
21
armv7*)
22
export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+neon"
23
;;
24
powerpc-*)
25
- export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+altivec"
26
export STDSIMD_DISABLE_ASSERT_INSTR=1
27
28
powerpc64-*)
coresimd/powerpc/mod.rs
@@ -1,6 +1,8 @@
1
//! PowerPC intrinsics
2
3
+#[cfg(target_feature = "altivec")]
4
mod altivec;
5
6
pub use self::altivec::*;
7
8
mod vsx;
0 commit comments