From 1e64a7b4f1ad86a2fa9a1fdf3ab1c5b3e011b33b Mon Sep 17 00:00:00 2001 From: Petr Sumbera Date: Thu, 14 Jul 2022 13:44:40 +0200 Subject: [PATCH] solaris: unbreak build on native platform Fixes: #99208 --- src/bootstrap/builder.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index 712454d5048d1..1aa79f5566aa6 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -1764,6 +1764,7 @@ impl<'a> Builder<'a> { if !target.contains("windows") { let needs_unstable_opts = target.contains("linux") + || target.contains("solaris") || target.contains("windows") || target.contains("bsd") || target.contains("dragonfly")