Skip to content

Commit

Permalink
bootstrap: illumos platform flags for split-debuginfo
Browse files Browse the repository at this point in the history
Bootstrap currently provides `-Zunstable-options` for platforms
when using split debuginfo - this commit adds it for the illumos
target too.
  • Loading branch information
citrus-it committed Jul 1, 2022
1 parent 7e2733b commit 5122bb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bootstrap/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,8 @@ impl<'a> Builder<'a> {
let needs_unstable_opts = target.contains("linux")
|| target.contains("windows")
|| target.contains("bsd")
|| target.contains("dragonfly");
|| target.contains("dragonfly")
|| target.contains("illumos");

if needs_unstable_opts {
rustflags.arg("-Zunstable-options");
Expand Down

0 comments on commit 5122bb5

Please sign in to comment.