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:
Andy Fiddaman 2022-07-01 13:21:18 +00:00
parent 7e2733bb1d
commit 5122bb5572

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