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"
14
14
15
15
# FIXME: on armv7 neon intrinsics require the neon target-feature to be
16
16
# unconditionally enabled.
17
- # FIXME: powerpc (32-bit) must be compiled with altivec
18
17
# FIXME: on powerpc (32-bit) and powerpc64 (big endian) disable
19
18
# the instr tests.
20
19
case ${TARGET} in
21
20
armv7* )
22
21
export RUSTFLAGS=" ${RUSTFLAGS} -C target-feature=+neon"
23
22
;;
24
23
powerpc-* )
25
- export RUSTFLAGS=" ${RUSTFLAGS} -C target-feature=+altivec"
26
24
export STDSIMD_DISABLE_ASSERT_INSTR=1
27
25
;;
28
26
powerpc64-* )
Original file line number Diff line number Diff line change 1
1
//! PowerPC intrinsics
2
2
3
+ #[ cfg( target_feature = "altivec" ) ]
3
4
mod altivec;
5
+ #[ cfg( target_feature = "altivec" ) ]
4
6
pub use self :: altivec:: * ;
5
7
6
8
mod vsx;
You can’t perform that action at this time.
0 commit comments