diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-07-14 19:24:08 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-14 19:24:08 +0530 |
| commit | f74358d052a9e58238a984e12785ef6a9adcee22 (patch) | |
| tree | d876037fae156bcc79f913b129fecca39ce26800 /src | |
| parent | 39936fd0b72ab9f25590ef6a2ffda0b08ff147e5 (diff) | |
| parent | 1e64a7b4f1ad86a2fa9a1fdf3ab1c5b3e011b33b (diff) | |
| download | rust-f74358d052a9e58238a984e12785ef6a9adcee22.tar.gz rust-f74358d052a9e58238a984e12785ef6a9adcee22.zip | |
Rollup merge of #99236 - psumbera:Issue99208, r=Mark-Simulacrum
solaris: unbreak build on native platform Fixes: #99208
Diffstat (limited to 'src')
| -rw-r--r-- | src/bootstrap/builder.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index 712454d5048..1aa79f5566a 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") |
