Skip to content

Commit 5122bb5

Browse files
committed
bootstrap: illumos platform flags for split-debuginfo
Bootstrap currently provides `-Zunstable-options` for platforms when using split debuginfo - this commit adds it for the illumos target too.
1 parent 7e2733b commit 5122bb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/builder.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1760,7 +1760,8 @@ impl<'a> Builder<'a> {
17601760
let needs_unstable_opts = target.contains("linux")
17611761
|| target.contains("windows")
17621762
|| target.contains("bsd")
1763-
|| target.contains("dragonfly");
1763+
|| target.contains("dragonfly")
1764+
|| target.contains("illumos");
17641765

17651766
if needs_unstable_opts {
17661767
rustflags.arg("-Zunstable-options");

0 commit comments

Comments
 (0)