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.
This commit is contained in:
Dylan DPC 2022-07-02 12:23:40 +05:30 committed by GitHub
commit 5fe0997b54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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");