Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/rust
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: alexcrichton/rust
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: build-llvm-in-binary
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 42 files changed
  • 1 contributor

Commits on Nov 7, 2019

  1. rustc: Link LLVM directly into rustc again

    This commit builds on #65501 continue to simplify the build system and
    compiler now that we no longer have multiple LLVM backends to ship by
    default. Here this switches the compiler back to what it once was long
    long ago, which is linking LLVM directly to the compiler rather than
    dynamically loading it at runtime. The `codegen-backends` directory of
    the sysroot no longer exists and all relevant support in the build
    system is removed. Note that `rustc` still supports a dynamically loaded
    codegen backend as it did previously, it just no longer supports
    dynamically loaded codegen backends in its own sysroot.
    
    Additionally as part of this the `librustc_codegen_llvm` crate now once
    again explicitly depends on all of its crates instead of implicitly
    loading them through the sysroot. This involved filling out its
    `Cargo.toml` and deleting all the now-unnecessary `extern crate`
    annotations in the header of the crate. (this in turn required adding a
    number of imports for names of macros too).
    
    The end results of this change are:
    
    * Rustbuild's build process for the compiler as all the "oh don't forget
      the codegen backend" checks can be easily removed.
    * Building `rustc_codegen_llvm` is much simpler since it's simply
      another compiler crate.
    * Managing the dependencies of `rustc_codegen_llvm` is much simpler since
      it's "just another `Cargo.toml` to edit"
    * The build process should be a smidge faster because there's more
      parallelism in the main rustc build step rather than splitting
      `librustc_codegen_llvm` out to its own step.
    * The compiler is expected to be slightly faster by default because the
      codegen backend does not need to be dynamically loaded.
    * Disabling LLVM as part of rustbuild is still supported, supporting
      multiple codegen backends is still supported, and dynamic loading of a
      codegen backend is still supported.
    alexcrichton committed Nov 7, 2019
    Copy the full SHA
    826db5f View commit details
  2. Fix some linking of LLVM's dynamic library

    Ensure it shows up in the same places it did before so tools can find it
    at runtime.
    alexcrichton committed Nov 7, 2019
    Copy the full SHA
    130c6ec View commit details

Commits on Nov 20, 2019

  1. Copy the full SHA
    e7f4fb3 View commit details
Loading