diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-09-05 20:33:00 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-09-05 20:34:03 +0300 |
| commit | 4fff14d3d8fa0f75e745e3d6b68967b1caa3aa97 (patch) | |
| tree | 10205aecfbcf16fdf496b1a4f8b50efecff5335a /src/bootstrap/lib.rs | |
| parent | 7d289aeade481c03d42e7f6d31bc6b64a73cfa45 (diff) | |
| download | rust-4fff14d3d8fa0f75e745e3d6b68967b1caa3aa97.tar.gz rust-4fff14d3d8fa0f75e745e3d6b68967b1caa3aa97.zip | |
rustbuild: Remove `Mode::Codegen`
Diffstat (limited to 'src/bootstrap/lib.rs')
| -rw-r--r-- | src/bootstrap/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 54651214363..f7e456d2c44 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -300,9 +300,6 @@ pub enum Mode { /// Build librustc, and compiler libraries, placing output in the "stageN-rustc" directory. Rustc, - /// Build codegen libraries, placing output in the "stageN-codegen" directory - Codegen, - /// Build a tool, placing output in the "stage0-bootstrap-tools" /// directory. This is for miscellaneous sets of tools that are built /// using the bootstrap stage0 compiler in its entirety (target libraries @@ -572,7 +569,6 @@ impl Build { let suffix = match mode { Mode::Std => "-std", Mode::Rustc => "-rustc", - Mode::Codegen => "-codegen", Mode::ToolBootstrap => "-bootstrap-tools", Mode::ToolStd | Mode::ToolRustc => "-tools", }; |
