Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 571864e

Browse files
committed
Disable LLVM assertions on linux-cross-opt
1 parent 71b494e commit 571864e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

master/master.cfg

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,6 +1683,7 @@ for p in auto_platforms:
16831683
debug = False
16841684
chk = True
16851685
rustbuild = None
1686+
llvm_assertions = True
16861687
make_args = []
16871688

16881689
if "-debug" in p:
@@ -1714,6 +1715,10 @@ for p in auto_platforms:
17141715
if "cross" in p:
17151716
chk = False
17161717
musl = "/musl-i686"
1718+
1719+
# FIXME(rust-lang/rust#36150)
1720+
if "linux-cross-opt" in p:
1721+
llvm_assertions = False
17171722
if not opt_compiler:
17181723
chk = False
17191724
if "rustbuild" in p:
@@ -1761,7 +1766,7 @@ for p in auto_platforms:
17611766
"targets": targets,
17621767
"debug": debug,
17631768
"debug-assertions": True,
1764-
#"llvm-assertions": True,
1769+
"llvm-assertions": llvm_assertions,
17651770
"check": chk,
17661771
"rustbuild": rustbuild},
17671772
factory=make_and_check_buildfactory(chk, android,

0 commit comments

Comments
 (0)