File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,13 @@ RUSTFLAGS="$RUSTFLAGS --cfg stdsimd_strict"
1414
1515# FIXME: on armv7 neon intrinsics require the neon target-feature to be
1616# unconditionally enabled.
17- # FIXME: powerpc (32-bit) must be compiled with altivec
1817# FIXME: on powerpc (32-bit) and powerpc64 (big endian) disable
1918# the instr tests.
2019case ${TARGET} in
2120 armv7* )
2221 export RUSTFLAGS=" ${RUSTFLAGS} -C target-feature=+neon"
2322 ;;
2423 powerpc-* )
25- export RUSTFLAGS=" ${RUSTFLAGS} -C target-feature=+altivec"
2624 export STDSIMD_DISABLE_ASSERT_INSTR=1
2725 ;;
2826 powerpc64-* )
Original file line number Diff line number Diff line change 11//! PowerPC intrinsics
22
3+ #[ cfg( target_feature = "altivec" ) ]
34mod altivec;
5+ #[ cfg( target_feature = "altivec" ) ]
46pub use self :: altivec:: * ;
57
68mod vsx;
You can’t perform that action at this time.
0 commit comments