summary refs log tree commit diff
path: root/src/bootstrap/lib.rs
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-09-05 20:33:00 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2020-09-05 20:34:03 +0300
commit4fff14d3d8fa0f75e745e3d6b68967b1caa3aa97 (patch)
tree10205aecfbcf16fdf496b1a4f8b50efecff5335a /src/bootstrap/lib.rs
parent7d289aeade481c03d42e7f6d31bc6b64a73cfa45 (diff)
downloadrust-4fff14d3d8fa0f75e745e3d6b68967b1caa3aa97.tar.gz
rust-4fff14d3d8fa0f75e745e3d6b68967b1caa3aa97.zip
rustbuild: Remove `Mode::Codegen`
Diffstat (limited to 'src/bootstrap/lib.rs')
-rw-r--r--src/bootstrap/lib.rs4
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",
         };