diff options
| author | Tobias Kortkamp <t@tobik.me> | 2021-11-27 07:23:55 +0100 | 
|---|---|---|
| committer | Tobias Kortkamp <t@tobik.me> | 2021-11-27 07:24:18 +0100 | 
| commit | 47474f10558a473258510b0e5dea13d607a5d34c (patch) | |
| tree | d23eed69805bf33c0324770390605eb5b1913d8c /src/bootstrap/native.rs | |
| parent | 3e018ce194ab16125747220676dd8a20aecd5196 (diff) | |
| download | rust-47474f10558a473258510b0e5dea13d607a5d34c.tar.gz rust-47474f10558a473258510b0e5dea13d607a5d34c.zip | |
Add riscv64gc-unknown-freebsd
Diffstat (limited to 'src/bootstrap/native.rs')
| -rw-r--r-- | src/bootstrap/native.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index 37578e30f6d..f50797285d2 100644 --- a/src/bootstrap/native.rs +++ b/src/bootstrap/native.rs @@ -249,7 +249,7 @@ impl Step for Llvm { } } - if target.starts_with("riscv") { + if !target.contains("freebsd") && target.starts_with("riscv") { // In RISC-V, using C++ atomics require linking to `libatomic` but the LLVM build // system check cannot detect this. Therefore it is set manually here. if !builder.config.llvm_tools_enabled { | 
