We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9a3ef2 commit 93ab354Copy full SHA for 93ab354
ci/run.sh
@@ -33,6 +33,11 @@ case ${TARGET} in
33
i686-* | i586-*)
34
export RUSTFLAGS="${RUSTFLAGS} -C relocation-model=static -Z plt=yes"
35
;;
36
+ # Some x86_64 targets enable by default more features beyond SSE2,
37
+ # which cause some instruction assertion checks to fail.
38
+ x86_64-*)
39
+ export RUSTFLAGS="${RUSTFLAGS} -C target-feature=-sse3"
40
+ ;;
41
#Unoptimized build uses fast-isel which breaks with msa
42
mips-* | mipsel-*)
43
export RUSTFLAGS="${RUSTFLAGS} -C llvm-args=-fast-isel=false"
0 commit comments