We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e49f57f commit 5986587Copy full SHA for 5986587
ci/run.sh
@@ -23,6 +23,10 @@ case ${TARGET} in
23
i686-* | i586-*)
24
export RUSTFLAGS="${RUSTFLAGS} -C relocation-model=static -Z plt=yes"
25
;;
26
+ #Unoptimized build uses fast-isel which breaks with msa
27
+ mips-* | mipsel-*)
28
+ export RUSTFLAGS="${RUSTFLAGS} -C llvm-args=-fast-isel=false"
29
+ ;;
30
esac
31
32
echo "RUSTFLAGS=${RUSTFLAGS}"
@@ -75,6 +79,12 @@ case ${TARGET} in
75
79
export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+simd128,+unimplemented-simd128"
76
80
cargo_test "--release --no-run"
77
81
82
+ mips-*gnu* | mipsel-*gnu*)
83
+ export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+msa,+fp64,+mips32r5"
84
85
+ mips64*)
86
+ export RUSTFLAGS="${RUSTFLAGS} -C target-feature=+msa"
87
78
88
*)
89
90
0 commit comments