summary refs log tree commit diff
path: root/src/librustc_codegen_llvm
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-10-22 04:09:28 +0000
committerbors <bors@rust-lang.org>2019-10-22 04:09:28 +0000
commit50ffa79589600f515ff2710830c23cd2dce7cb76 (patch)
treeecc547e06113402dfc71932098c5000576b1299c /src/librustc_codegen_llvm
parent6576f4be5af31a5e61dfc0cf50b7130e6c6dfb35 (diff)
parentc7d285b78136a5bccf8419afa4c57428b83b8bec (diff)
downloadrust-50ffa79589600f515ff2710830c23cd2dce7cb76.tar.gz
rust-50ffa79589600f515ff2710830c23cd2dce7cb76.zip
Auto merge of #65501 - alexcrichton:remove-emscripten-backend, r=Mark-Simulacrum
Remove `src/llvm-emscripten` submodule

With #65251 landed there's no need to build two LLVM backends and ship
them with rustc, every target we have now uses the same LLVM backend!

This removes the `src/llvm-emscripten` submodule and additionally
removes all support from rustbuild for building the emscripten LLVM
backend. Multiple codegen backend support is left in place for now, and
this is intended to be an easy 10-15 minute win on CI times by avoiding
having to build LLVM twice.
Diffstat (limited to 'src/librustc_codegen_llvm')
-rw-r--r--src/librustc_codegen_llvm/Cargo.toml6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/librustc_codegen_llvm/Cargo.toml b/src/librustc_codegen_llvm/Cargo.toml
index 98efa6a5804..867bbd22cfb 100644
--- a/src/librustc_codegen_llvm/Cargo.toml
+++ b/src/librustc_codegen_llvm/Cargo.toml
@@ -12,9 +12,3 @@ test = false
 
 [dependencies]
 rustc_llvm = { path = "../librustc_llvm" }
-
-[features]
-# This is used to convince Cargo to separately cache builds of `rustc_codegen_llvm`
-# when this option is enabled or not. That way we can build two, cache two
-# artifacts, and have nice speedy rebuilds.
-emscripten = ["rustc_llvm/emscripten"]