diff options
| author | Sam Elliott <selliott@lowrisc.org> | 2019-08-02 17:05:59 +0100 |
|---|---|---|
| committer | Sam Elliott <selliott@lowrisc.org> | 2019-08-02 17:05:59 +0100 |
| commit | 9cb948feea23e18d26f2457e8f672c36e4f91e5d (patch) | |
| tree | df66b7699dc0ede1395846280c427fa619138363 /src/bootstrap | |
| parent | 184fb08037d0349b715d6926af7ec54595607151 (diff) | |
| download | rust-9cb948feea23e18d26f2457e8f672c36e4f91e5d.tar.gz rust-9cb948feea23e18d26f2457e8f672c36e4f91e5d.zip | |
rustbuild: WebAssembly is no longer an experimental LLVM backend
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/native.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index 9405ae4b155..174e4638aac 100644 --- a/src/bootstrap/native.rs +++ b/src/bootstrap/native.rs @@ -125,7 +125,7 @@ impl Step for Llvm { } else { match builder.config.llvm_targets { Some(ref s) => s, - None => "AArch64;ARM;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;Sparc;SystemZ;X86", + None => "AArch64;ARM;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;Sparc;SystemZ;WebAssembly;X86", } }; @@ -134,7 +134,7 @@ impl Step for Llvm { } else { match builder.config.llvm_experimental_targets { Some(ref s) => s, - None => "WebAssembly", + None => "", } }; |
