diff options
| author | Ahmed Charles <acharles@outlook.com> | 2016-08-12 23:38:17 -0700 |
|---|---|---|
| committer | Ahmed Charles <acharles@outlook.com> | 2016-10-05 22:42:40 -0700 |
| commit | e6985b2a6daa5acb84f364f6e6ddfdf170c28f2b (patch) | |
| tree | 3c5cf03b61417c8dddb214a3faf6a2a0c0af5c15 /src/bootstrap/lib.rs | |
| parent | 46957f05771a427545c792f69b37f8e05dcbb15d (diff) | |
| download | rust-e6985b2a6daa5acb84f364f6e6ddfdf170c28f2b.tar.gz rust-e6985b2a6daa5acb84f364f6e6ddfdf170c28f2b.zip | |
rustbuild: Add install target. #34675
It just prints to the screen currently.
Diffstat (limited to 'src/bootstrap/lib.rs')
| -rw-r--r-- | src/bootstrap/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index b4f61605d47..9ffc433cd78 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -62,6 +62,7 @@ mod config; mod dist; mod doc; mod flags; +mod install; mod native; mod sanity; mod step; @@ -453,6 +454,8 @@ impl Build { DistStd { compiler } => dist::std(self, &compiler, target.target), DistSrc { _dummy } => dist::rust_src(self), + Install { stage } => install::install(self, stage, target.target), + DebuggerScripts { stage } => { let compiler = Compiler::new(stage, target.target); dist::debugger_scripts(self, |
