diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2019-10-17 07:04:39 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2019-10-21 13:05:31 -0700 |
| commit | c7d285b78136a5bccf8419afa4c57428b83b8bec (patch) | |
| tree | ea9dc74dfb84b52255887109e4e08c47382db691 /config.toml.example | |
| parent | b7a9c285a50f3a94c44687ba9ff3ab0648243aaa (diff) | |
| download | rust-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 'config.toml.example')
| -rw-r--r-- | config.toml.example | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/config.toml.example b/config.toml.example index 2e3b714f922..be977024426 100644 --- a/config.toml.example +++ b/config.toml.example @@ -374,10 +374,7 @@ # This is an array of the codegen backends that will be compiled for the rustc # that's being compiled. The default is to only build the LLVM codegen backend, -# but you can also optionally enable the "emscripten" backend for asm.js or -# make this an empty array (but that probably won't get too far in the -# bootstrap) -# FIXME: remove the obsolete emscripten backend option. +# and currently the only standard option supported is `"llvm"` #codegen-backends = ["llvm"] # This is the name of the directory in which codegen backends will get installed |
