Skip to content

Commit 5fe0997

Browse files
authored
Rollup merge of #98763 - citrus-it:illumos-split-debuginfo, r=Mark-Simulacrum
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.
2 parents 83dde88 + 5122bb5 commit 5fe0997

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: 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)