summary refs log tree commit diff
path: root/src/librustc_codegen_llvm
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-10-17 07:04:39 -0700
committerAlex Crichton <alex@alexcrichton.com>2019-10-21 13:05:31 -0700
commitc7d285b78136a5bccf8419afa4c57428b83b8bec (patch)
treeea9dc74dfb84b52255887109e4e08c47382db691 /src/librustc_codegen_llvm
parentb7a9c285a50f3a94c44687ba9ff3ab0648243aaa (diff)
downloadrust-c7d285b78136a5bccf8419afa4c57428b83b8bec.tar.gz
rust-c7d285b78136a5bccf8419afa4c57428b83b8bec.zip
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"]