]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/dist.rs
Rollup merge of #41131 - euclio:collapse-animation, r=GuillaumeGomez
[rust.git] / src / bootstrap / dist.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Implementation of the various distribution aspects of the compiler.
12 //!
13 //! This module is responsible for creating tarballs of the standard library,
14 //! compiler, and documentation. This ends up being what we distribute to
15 //! everyone as well.
16 //!
17 //! No tarball is actually created literally in this file, but rather we shell
18 //! out to `rust-installer` still. This may one day be replaced with bits and
19 //! pieces of `rustup.rs`!
20
21 use std::env;
22 use std::fs::{self, File};
23 use std::io::{Read, Write};
24 use std::path::{PathBuf, Path};
25 use std::process::{Command, Stdio};
26
27 use build_helper::output;
28
29 #[cfg(not(target_os = "solaris"))]
30 const SH_CMD: &'static str = "sh";
31 // On Solaris, sh is the historical bourne shell, not a POSIX shell, or bash.
32 #[cfg(target_os = "solaris")]
33 const SH_CMD: &'static str = "bash";
34
35 use {Build, Compiler, Mode};
36 use channel;
37 use util::{cp_r, libdir, is_dylib, cp_filtered, copy, exe};
38
39 fn pkgname(build: &Build, component: &str) -> String {
40     if component == "cargo" {
41         format!("{}-{}", component, build.cargo_package_vers())
42     } else {
43         assert!(component.starts_with("rust"));
44         format!("{}-{}", component, build.rust_package_vers())
45     }
46 }
47
48 fn distdir(build: &Build) -> PathBuf {
49     build.out.join("dist")
50 }
51
52 pub fn tmpdir(build: &Build) -> PathBuf {
53     build.out.join("tmp/dist")
54 }
55
56 /// Builds the `rust-docs` installer component.
57 ///
58 /// Slurps up documentation from the `stage`'s `host`.
59 pub fn docs(build: &Build, stage: u32, host: &str) {
60     println!("Dist docs stage{} ({})", stage, host);
61     if !build.config.docs {
62         println!("\tskipping - docs disabled");
63         return
64     }
65
66     let name = pkgname(build, "rust-docs");
67     let image = tmpdir(build).join(format!("{}-{}-image", name, host));
68     let _ = fs::remove_dir_all(&image);
69
70     let dst = image.join("share/doc/rust/html");
71     t!(fs::create_dir_all(&dst));
72     let src = build.out.join(host).join("doc");
73     cp_r(&src, &dst);
74
75     let mut cmd = Command::new(SH_CMD);
76     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
77        .arg("--product-name=Rust-Documentation")
78        .arg("--rel-manifest-dir=rustlib")
79        .arg("--success-message=Rust-documentation-is-installed.")
80        .arg(format!("--image-dir={}", sanitize_sh(&image)))
81        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
82        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
83        .arg(format!("--package-name={}-{}", name, host))
84        .arg("--component-name=rust-docs")
85        .arg("--legacy-manifest-dirs=rustlib,cargo")
86        .arg("--bulk-dirs=share/doc/rust/html");
87     build.run(&mut cmd);
88     t!(fs::remove_dir_all(&image));
89
90     // As part of this step, *also* copy the docs directory to a directory which
91     // buildbot typically uploads.
92     if host == build.config.build {
93         let dst = distdir(build).join("doc").join(build.rust_package_vers());
94         t!(fs::create_dir_all(&dst));
95         cp_r(&src, &dst);
96     }
97 }
98
99 /// Build the `rust-mingw` installer component.
100 ///
101 /// This contains all the bits and pieces to run the MinGW Windows targets
102 /// without any extra installed software (e.g. we bundle gcc, libraries, etc).
103 /// Currently just shells out to a python script, but that should be rewritten
104 /// in Rust.
105 pub fn mingw(build: &Build, host: &str) {
106     println!("Dist mingw ({})", host);
107     let name = pkgname(build, "rust-mingw");
108     let image = tmpdir(build).join(format!("{}-{}-image", name, host));
109     let _ = fs::remove_dir_all(&image);
110     t!(fs::create_dir_all(&image));
111
112     // The first argument to the script is a "temporary directory" which is just
113     // thrown away (this contains the runtime DLLs included in the rustc package
114     // above) and the second argument is where to place all the MinGW components
115     // (which is what we want).
116     //
117     // FIXME: this script should be rewritten into Rust
118     let mut cmd = Command::new(build.python());
119     cmd.arg(build.src.join("src/etc/make-win-dist.py"))
120        .arg(tmpdir(build))
121        .arg(&image)
122        .arg(host);
123     build.run(&mut cmd);
124
125     let mut cmd = Command::new(SH_CMD);
126     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
127        .arg("--product-name=Rust-MinGW")
128        .arg("--rel-manifest-dir=rustlib")
129        .arg("--success-message=Rust-MinGW-is-installed.")
130        .arg(format!("--image-dir={}", sanitize_sh(&image)))
131        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
132        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
133        .arg(format!("--package-name={}-{}", name, host))
134        .arg("--component-name=rust-mingw")
135        .arg("--legacy-manifest-dirs=rustlib,cargo");
136     build.run(&mut cmd);
137     t!(fs::remove_dir_all(&image));
138 }
139
140 /// Creates the `rustc` installer component.
141 pub fn rustc(build: &Build, stage: u32, host: &str) {
142     println!("Dist rustc stage{} ({})", stage, host);
143     let name = pkgname(build, "rustc");
144     let image = tmpdir(build).join(format!("{}-{}-image", name, host));
145     let _ = fs::remove_dir_all(&image);
146     let overlay = tmpdir(build).join(format!("{}-{}-overlay", name, host));
147     let _ = fs::remove_dir_all(&overlay);
148
149     // Prepare the rustc "image", what will actually end up getting installed
150     prepare_image(build, stage, host, &image);
151
152     // Prepare the overlay which is part of the tarball but won't actually be
153     // installed
154     let cp = |file: &str| {
155         install(&build.src.join(file), &overlay, 0o644);
156     };
157     cp("COPYRIGHT");
158     cp("LICENSE-APACHE");
159     cp("LICENSE-MIT");
160     cp("README.md");
161     // tiny morsel of metadata is used by rust-packaging
162     let version = build.rust_version();
163     t!(t!(File::create(overlay.join("version"))).write_all(version.as_bytes()));
164
165     // On MinGW we've got a few runtime DLL dependencies that we need to
166     // include. The first argument to this script is where to put these DLLs
167     // (the image we're creating), and the second argument is a junk directory
168     // to ignore all other MinGW stuff the script creates.
169     //
170     // On 32-bit MinGW we're always including a DLL which needs some extra
171     // licenses to distribute. On 64-bit MinGW we don't actually distribute
172     // anything requiring us to distribute a license, but it's likely the
173     // install will *also* include the rust-mingw package, which also needs
174     // licenses, so to be safe we just include it here in all MinGW packages.
175     //
176     // FIXME: this script should be rewritten into Rust
177     if host.contains("pc-windows-gnu") {
178         let mut cmd = Command::new(build.python());
179         cmd.arg(build.src.join("src/etc/make-win-dist.py"))
180            .arg(&image)
181            .arg(tmpdir(build))
182            .arg(host);
183         build.run(&mut cmd);
184
185         let dst = image.join("share/doc");
186         t!(fs::create_dir_all(&dst));
187         cp_r(&build.src.join("src/etc/third-party"), &dst);
188     }
189
190     // Finally, wrap everything up in a nice tarball!
191     let mut cmd = Command::new(SH_CMD);
192     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
193        .arg("--product-name=Rust")
194        .arg("--rel-manifest-dir=rustlib")
195        .arg("--success-message=Rust-is-ready-to-roll.")
196        .arg(format!("--image-dir={}", sanitize_sh(&image)))
197        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
198        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
199        .arg(format!("--non-installed-overlay={}", sanitize_sh(&overlay)))
200        .arg(format!("--package-name={}-{}", name, host))
201        .arg("--component-name=rustc")
202        .arg("--legacy-manifest-dirs=rustlib,cargo");
203     build.run(&mut cmd);
204     t!(fs::remove_dir_all(&image));
205     t!(fs::remove_dir_all(&overlay));
206
207     fn prepare_image(build: &Build, stage: u32, host: &str, image: &Path) {
208         let src = build.sysroot(&Compiler::new(stage, host));
209         let libdir = libdir(host);
210
211         // Copy rustc/rustdoc binaries
212         t!(fs::create_dir_all(image.join("bin")));
213         cp_r(&src.join("bin"), &image.join("bin"));
214
215         // Copy runtime DLLs needed by the compiler
216         if libdir != "bin" {
217             for entry in t!(src.join(libdir).read_dir()).map(|e| t!(e)) {
218                 let name = entry.file_name();
219                 if let Some(s) = name.to_str() {
220                     if is_dylib(s) {
221                         install(&entry.path(), &image.join(libdir), 0o644);
222                     }
223                 }
224             }
225         }
226
227         // Man pages
228         t!(fs::create_dir_all(image.join("share/man/man1")));
229         cp_r(&build.src.join("man"), &image.join("share/man/man1"));
230
231         // Debugger scripts
232         debugger_scripts(build, &image, host);
233
234         // Misc license info
235         let cp = |file: &str| {
236             install(&build.src.join(file), &image.join("share/doc/rust"), 0o644);
237         };
238         cp("COPYRIGHT");
239         cp("LICENSE-APACHE");
240         cp("LICENSE-MIT");
241         cp("README.md");
242     }
243 }
244
245 /// Copies debugger scripts for `host` into the `sysroot` specified.
246 pub fn debugger_scripts(build: &Build,
247                         sysroot: &Path,
248                         host: &str) {
249     let cp_debugger_script = |file: &str| {
250         let dst = sysroot.join("lib/rustlib/etc");
251         t!(fs::create_dir_all(&dst));
252         install(&build.src.join("src/etc/").join(file), &dst, 0o644);
253     };
254     if host.contains("windows-msvc") {
255         // no debugger scripts
256     } else {
257         cp_debugger_script("debugger_pretty_printers_common.py");
258
259         // gdb debugger scripts
260         install(&build.src.join("src/etc/rust-gdb"), &sysroot.join("bin"),
261                 0o755);
262
263         cp_debugger_script("gdb_load_rust_pretty_printers.py");
264         cp_debugger_script("gdb_rust_pretty_printing.py");
265
266         // lldb debugger scripts
267         install(&build.src.join("src/etc/rust-lldb"), &sysroot.join("bin"),
268                 0o755);
269
270         cp_debugger_script("lldb_rust_formatters.py");
271     }
272 }
273
274 /// Creates the `rust-std` installer component as compiled by `compiler` for the
275 /// target `target`.
276 pub fn std(build: &Build, compiler: &Compiler, target: &str) {
277     println!("Dist std stage{} ({} -> {})", compiler.stage, compiler.host,
278              target);
279
280     // The only true set of target libraries came from the build triple, so
281     // let's reduce redundant work by only producing archives from that host.
282     if compiler.host != build.config.build {
283         println!("\tskipping, not a build host");
284         return
285     }
286
287     let name = pkgname(build, "rust-std");
288     let image = tmpdir(build).join(format!("{}-{}-image", name, target));
289     let _ = fs::remove_dir_all(&image);
290
291     let dst = image.join("lib/rustlib").join(target);
292     t!(fs::create_dir_all(&dst));
293     let src = build.sysroot(compiler).join("lib/rustlib");
294     cp_r(&src.join(target), &dst);
295
296     let mut cmd = Command::new(SH_CMD);
297     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
298        .arg("--product-name=Rust")
299        .arg("--rel-manifest-dir=rustlib")
300        .arg("--success-message=std-is-standing-at-the-ready.")
301        .arg(format!("--image-dir={}", sanitize_sh(&image)))
302        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
303        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
304        .arg(format!("--package-name={}-{}", name, target))
305        .arg(format!("--component-name=rust-std-{}", target))
306        .arg("--legacy-manifest-dirs=rustlib,cargo");
307     build.run(&mut cmd);
308     t!(fs::remove_dir_all(&image));
309 }
310
311 pub fn rust_src_location(build: &Build) -> PathBuf {
312     let plain_name = format!("rustc-{}-src", build.rust_package_vers());
313     distdir(build).join(&format!("{}.tar.gz", plain_name))
314 }
315
316 /// Creates a tarball of save-analysis metadata, if available.
317 pub fn analysis(build: &Build, compiler: &Compiler, target: &str) {
318     if !build.config.rust_save_analysis {
319         return
320     }
321
322     println!("Dist analysis");
323
324     if compiler.host != build.config.build {
325         println!("\tskipping, not a build host");
326         return
327     }
328
329     // Package save-analysis from stage1 if not doing a full bootstrap, as the
330     // stage2 artifacts is simply copied from stage1 in that case.
331     let compiler = if build.force_use_stage1(compiler, target) {
332         Compiler::new(1, compiler.host)
333     } else {
334         compiler.clone()
335     };
336
337     let name = pkgname(build, "rust-analysis");
338     let image = tmpdir(build).join(format!("{}-{}-image", name, target));
339
340     let src = build.stage_out(&compiler, Mode::Libstd).join(target).join("release").join("deps");
341
342     let image_src = src.join("save-analysis");
343     let dst = image.join("lib/rustlib").join(target).join("analysis");
344     t!(fs::create_dir_all(&dst));
345     println!("image_src: {:?}, dst: {:?}", image_src, dst);
346     cp_r(&image_src, &dst);
347
348     let mut cmd = Command::new(SH_CMD);
349     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
350        .arg("--product-name=Rust")
351        .arg("--rel-manifest-dir=rustlib")
352        .arg("--success-message=save-analysis-saved.")
353        .arg(format!("--image-dir={}", sanitize_sh(&image)))
354        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
355        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
356        .arg(format!("--package-name={}-{}", name, target))
357        .arg(format!("--component-name=rust-analysis-{}", target))
358        .arg("--legacy-manifest-dirs=rustlib,cargo");
359     build.run(&mut cmd);
360     t!(fs::remove_dir_all(&image));
361 }
362
363 const CARGO_VENDOR_VERSION: &'static str = "0.1.4";
364
365 /// Creates the `rust-src` installer component and the plain source tarball
366 pub fn rust_src(build: &Build) {
367     if !build.config.rust_dist_src {
368         return
369     }
370
371     println!("Dist src");
372
373     let name = pkgname(build, "rust-src");
374     let image = tmpdir(build).join(format!("{}-image", name));
375     let _ = fs::remove_dir_all(&image);
376
377     let dst = image.join("lib/rustlib/src");
378     let dst_src = dst.join("rust");
379     t!(fs::create_dir_all(&dst_src));
380
381     // This is the set of root paths which will become part of the source package
382     let src_files = [
383         "COPYRIGHT",
384         "LICENSE-APACHE",
385         "LICENSE-MIT",
386         "CONTRIBUTING.md",
387         "README.md",
388         "RELEASES.md",
389         "configure",
390         "x.py",
391     ];
392     let src_dirs = [
393         "man",
394         "src",
395         "cargo",
396     ];
397
398     let filter_fn = move |path: &Path| {
399         let spath = match path.to_str() {
400             Some(path) => path,
401             None => return false,
402         };
403         if spath.ends_with("~") || spath.ends_with(".pyc") {
404             return false
405         }
406         if spath.contains("llvm/test") || spath.contains("llvm\\test") {
407             if spath.ends_with(".ll") ||
408                spath.ends_with(".td") ||
409                spath.ends_with(".s") {
410                 return false
411             }
412         }
413
414         let excludes = [
415             "CVS", "RCS", "SCCS", ".git", ".gitignore", ".gitmodules",
416             ".gitattributes", ".cvsignore", ".svn", ".arch-ids", "{arch}",
417             "=RELEASE-ID", "=meta-update", "=update", ".bzr", ".bzrignore",
418             ".bzrtags", ".hg", ".hgignore", ".hgrags", "_darcs",
419         ];
420         !path.iter()
421              .map(|s| s.to_str().unwrap())
422              .any(|s| excludes.contains(&s))
423     };
424
425     // Copy the directories using our filter
426     for item in &src_dirs {
427         let dst = &dst_src.join(item);
428         t!(fs::create_dir(dst));
429         cp_filtered(&build.src.join(item), dst, &filter_fn);
430     }
431     // Copy the files normally
432     for item in &src_files {
433         copy(&build.src.join(item), &dst_src.join(item));
434     }
435
436     // If we're building from git sources, we need to vendor a complete distribution.
437     if build.src_is_git {
438         // Get cargo-vendor installed, if it isn't already.
439         let mut has_cargo_vendor = false;
440         let mut cmd = Command::new(&build.cargo);
441         for line in output(cmd.arg("install").arg("--list")).lines() {
442             has_cargo_vendor |= line.starts_with("cargo-vendor ");
443         }
444         if !has_cargo_vendor {
445             let mut cmd = Command::new(&build.cargo);
446             cmd.arg("install")
447                .arg("--force")
448                .arg("--debug")
449                .arg("--vers").arg(CARGO_VENDOR_VERSION)
450                .arg("cargo-vendor")
451                .env("RUSTC", &build.rustc);
452             build.run(&mut cmd);
453         }
454
455         // Vendor all Cargo dependencies
456         let mut cmd = Command::new(&build.cargo);
457         cmd.arg("vendor")
458            .current_dir(&dst_src.join("src"));
459         build.run(&mut cmd);
460     }
461
462     // Create source tarball in rust-installer format
463     let mut cmd = Command::new(SH_CMD);
464     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
465        .arg("--product-name=Rust")
466        .arg("--rel-manifest-dir=rustlib")
467        .arg("--success-message=Awesome-Source.")
468        .arg(format!("--image-dir={}", sanitize_sh(&image)))
469        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
470        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
471        .arg(format!("--package-name={}", name))
472        .arg("--component-name=rust-src")
473        .arg("--legacy-manifest-dirs=rustlib,cargo");
474     build.run(&mut cmd);
475
476     // Rename directory, so that root folder of tarball has the correct name
477     let plain_name = format!("rustc-{}-src", build.rust_package_vers());
478     let plain_dst_src = tmpdir(build).join(&plain_name);
479     let _ = fs::remove_dir_all(&plain_dst_src);
480     t!(fs::create_dir_all(&plain_dst_src));
481     cp_r(&dst_src, &plain_dst_src);
482
483     // Create the version file
484     write_file(&plain_dst_src.join("version"), build.rust_version().as_bytes());
485
486     // Create plain source tarball
487     let mut cmd = Command::new("tar");
488     cmd.arg("-czf").arg(sanitize_sh(&rust_src_location(build)))
489        .arg(&plain_name)
490        .current_dir(tmpdir(build));
491     build.run(&mut cmd);
492
493     t!(fs::remove_dir_all(&image));
494     t!(fs::remove_dir_all(&plain_dst_src));
495 }
496
497 fn install(src: &Path, dstdir: &Path, perms: u32) {
498     let dst = dstdir.join(src.file_name().unwrap());
499     t!(fs::create_dir_all(dstdir));
500     t!(fs::copy(src, &dst));
501     chmod(&dst, perms);
502 }
503
504 #[cfg(unix)]
505 fn chmod(path: &Path, perms: u32) {
506     use std::os::unix::fs::*;
507     t!(fs::set_permissions(path, fs::Permissions::from_mode(perms)));
508 }
509 #[cfg(windows)]
510 fn chmod(_path: &Path, _perms: u32) {}
511
512 // We have to run a few shell scripts, which choke quite a bit on both `\`
513 // characters and on `C:\` paths, so normalize both of them away.
514 pub fn sanitize_sh(path: &Path) -> String {
515     let path = path.to_str().unwrap().replace("\\", "/");
516     return change_drive(&path).unwrap_or(path);
517
518     fn change_drive(s: &str) -> Option<String> {
519         let mut ch = s.chars();
520         let drive = ch.next().unwrap_or('C');
521         if ch.next() != Some(':') {
522             return None
523         }
524         if ch.next() != Some('/') {
525             return None
526         }
527         Some(format!("/{}/{}", drive, &s[drive.len_utf8() + 2..]))
528     }
529 }
530
531 fn write_file(path: &Path, data: &[u8]) {
532     let mut vf = t!(fs::File::create(path));
533     t!(vf.write_all(data));
534 }
535
536 pub fn cargo(build: &Build, stage: u32, target: &str) {
537     println!("Dist cargo stage{} ({})", stage, target);
538     let compiler = Compiler::new(stage, &build.config.build);
539
540     let src = build.src.join("cargo");
541     let etc = src.join("src/etc");
542     let release_num = build.cargo_release_num();
543     let name = pkgname(build, "cargo");
544     let version = build.cargo_info.version(build, &release_num);
545
546     let tmp = tmpdir(build);
547     let image = tmp.join("cargo-image");
548     drop(fs::remove_dir_all(&image));
549     t!(fs::create_dir_all(&image));
550
551     // Prepare the image directory
552     t!(fs::create_dir_all(image.join("share/zsh/site-functions")));
553     t!(fs::create_dir_all(image.join("etc/bash_completions.d")));
554     let cargo = build.cargo_out(&compiler, Mode::Tool, target)
555                      .join(exe("cargo", target));
556     install(&cargo, &image.join("bin"), 0o755);
557     for man in t!(etc.join("man").read_dir()) {
558         let man = t!(man);
559         install(&man.path(), &image.join("share/man/man1"), 0o644);
560     }
561     install(&etc.join("_cargo"), &image.join("share/zsh/site-functions"), 0o644);
562     copy(&etc.join("cargo.bashcomp.sh"),
563          &image.join("etc/bash_completions.d/cargo"));
564     let doc = image.join("share/doc/cargo");
565     install(&src.join("README.md"), &doc, 0o644);
566     install(&src.join("LICENSE-MIT"), &doc, 0o644);
567     install(&src.join("LICENSE-APACHE"), &doc, 0o644);
568     install(&src.join("LICENSE-THIRD-PARTY"), &doc, 0o644);
569
570     // Prepare the overlay
571     let overlay = tmp.join("cargo-overlay");
572     drop(fs::remove_dir_all(&overlay));
573     t!(fs::create_dir_all(&overlay));
574     install(&src.join("README.md"), &overlay, 0o644);
575     install(&src.join("LICENSE-MIT"), &overlay, 0o644);
576     install(&src.join("LICENSE-APACHE"), &overlay, 0o644);
577     install(&src.join("LICENSE-THIRD-PARTY"), &overlay, 0o644);
578     t!(t!(File::create(overlay.join("version"))).write_all(version.as_bytes()));
579
580     // Generate the installer tarball
581     let mut cmd = Command::new("sh");
582     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
583        .arg("--product-name=Rust")
584        .arg("--rel-manifest-dir=rustlib")
585        .arg("--success-message=Rust-is-ready-to-roll.")
586        .arg(format!("--image-dir={}", sanitize_sh(&image)))
587        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
588        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
589        .arg(format!("--non-installed-overlay={}", sanitize_sh(&overlay)))
590        .arg(format!("--package-name={}-{}", name, target))
591        .arg("--component-name=cargo")
592        .arg("--legacy-manifest-dirs=rustlib,cargo");
593     build.run(&mut cmd);
594 }
595
596 /// Creates a combined installer for the specified target in the provided stage.
597 pub fn extended(build: &Build, stage: u32, target: &str) {
598     println!("Dist extended stage{} ({})", stage, target);
599
600     let dist = distdir(build);
601     let rustc_installer = dist.join(format!("{}-{}.tar.gz",
602                                             pkgname(build, "rustc"),
603                                             target));
604     let cargo_installer = dist.join(format!("{}-{}.tar.gz",
605                                             pkgname(build, "cargo"),
606                                             target));
607     let docs_installer = dist.join(format!("{}-{}.tar.gz",
608                                            pkgname(build, "rust-docs"),
609                                            target));
610     let mingw_installer = dist.join(format!("{}-{}.tar.gz",
611                                             pkgname(build, "rust-mingw"),
612                                             target));
613     let std_installer = dist.join(format!("{}-{}.tar.gz",
614                                           pkgname(build, "rust-std"),
615                                           target));
616
617     let tmp = tmpdir(build);
618     let overlay = tmp.join("extended-overlay");
619     let etc = build.src.join("src/etc/installer");
620     let work = tmp.join("work");
621
622     let _ = fs::remove_dir_all(&overlay);
623     install(&build.src.join("COPYRIGHT"), &overlay, 0o644);
624     install(&build.src.join("LICENSE-APACHE"), &overlay, 0o644);
625     install(&build.src.join("LICENSE-MIT"), &overlay, 0o644);
626     let version = build.rust_version();
627     t!(t!(File::create(overlay.join("version"))).write_all(version.as_bytes()));
628     install(&etc.join("README.md"), &overlay, 0o644);
629
630     // When rust-std package split from rustc, we needed to ensure that during
631     // upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
632     // the std files during uninstall. To do this ensure that rustc comes
633     // before rust-std in the list below.
634     let mut input_tarballs = format!("{},{},{},{}",
635                                      sanitize_sh(&rustc_installer),
636                                      sanitize_sh(&cargo_installer),
637                                      sanitize_sh(&docs_installer),
638                                      sanitize_sh(&std_installer));
639     if target.contains("pc-windows-gnu") {
640         input_tarballs.push_str(",");
641         input_tarballs.push_str(&sanitize_sh(&mingw_installer));
642     }
643
644     let mut cmd = Command::new(SH_CMD);
645     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/combine-installers.sh")))
646        .arg("--product-name=Rust")
647        .arg("--rel-manifest-dir=rustlib")
648        .arg("--success-message=Rust-is-ready-to-roll.")
649        .arg(format!("--work-dir={}", sanitize_sh(&work)))
650        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
651        .arg(format!("--package-name={}-{}", pkgname(build, "rust"), target))
652        .arg("--legacy-manifest-dirs=rustlib,cargo")
653        .arg(format!("--input-tarballs={}", input_tarballs))
654        .arg(format!("--non-installed-overlay={}", sanitize_sh(&overlay)));
655     build.run(&mut cmd);
656
657     let mut license = String::new();
658     t!(t!(File::open(build.src.join("COPYRIGHT"))).read_to_string(&mut license));
659     license.push_str("\n");
660     t!(t!(File::open(build.src.join("LICENSE-APACHE"))).read_to_string(&mut license));
661     license.push_str("\n");
662     t!(t!(File::open(build.src.join("LICENSE-MIT"))).read_to_string(&mut license));
663
664     let rtf = r"{\rtf1\ansi\deff0{\fonttbl{\f0\fnil\fcharset0 Arial;}}\nowwrap\fs18";
665     let mut rtf = rtf.to_string();
666     rtf.push_str("\n");
667     for line in license.lines() {
668         rtf.push_str(line);
669         rtf.push_str("\\line ");
670     }
671     rtf.push_str("}");
672
673     if target.contains("apple-darwin") {
674         let pkg = tmp.join("pkg");
675         let _ = fs::remove_dir_all(&pkg);
676         t!(fs::create_dir_all(pkg.join("rustc")));
677         t!(fs::create_dir_all(pkg.join("cargo")));
678         t!(fs::create_dir_all(pkg.join("rust-docs")));
679         t!(fs::create_dir_all(pkg.join("rust-std")));
680
681         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rustc"), target)),
682              &pkg.join("rustc"));
683         cp_r(&work.join(&format!("{}-{}", pkgname(build, "cargo"), target)),
684              &pkg.join("cargo"));
685         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-docs"), target)),
686              &pkg.join("rust-docs"));
687         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-std"), target)),
688              &pkg.join("rust-std"));
689
690         install(&etc.join("pkg/postinstall"), &pkg.join("rustc"), 0o755);
691         install(&etc.join("pkg/postinstall"), &pkg.join("cargo"), 0o755);
692         install(&etc.join("pkg/postinstall"), &pkg.join("rust-docs"), 0o755);
693         install(&etc.join("pkg/postinstall"), &pkg.join("rust-std"), 0o755);
694
695         let pkgbuild = |component: &str| {
696             let mut cmd = Command::new("pkgbuild");
697             cmd.arg("--identifier").arg(format!("org.rust-lang.{}", component))
698                .arg("--scripts").arg(pkg.join(component))
699                .arg("--nopayload")
700                .arg(pkg.join(component).with_extension("pkg"));
701             build.run(&mut cmd);
702         };
703         pkgbuild("rustc");
704         pkgbuild("cargo");
705         pkgbuild("rust-docs");
706         pkgbuild("rust-std");
707
708         // create an 'uninstall' package
709         install(&etc.join("pkg/postinstall"), &pkg.join("uninstall"), 0o755);
710         pkgbuild("uninstall");
711
712         t!(fs::create_dir_all(pkg.join("res")));
713         t!(t!(File::create(pkg.join("res/LICENSE.txt"))).write_all(license.as_bytes()));
714         install(&etc.join("gfx/rust-logo.png"), &pkg.join("res"), 0o644);
715         let mut cmd = Command::new("productbuild");
716         cmd.arg("--distribution").arg(etc.join("pkg/Distribution.xml"))
717            .arg("--resources").arg(pkg.join("res"))
718            .arg(distdir(build).join(format!("{}-{}.pkg",
719                                              pkgname(build, "rust"),
720                                              target)))
721            .arg("--package-path").arg(&pkg);
722         build.run(&mut cmd);
723     }
724
725     if target.contains("windows") {
726         let exe = tmp.join("exe");
727         let _ = fs::remove_dir_all(&exe);
728         t!(fs::create_dir_all(exe.join("rustc")));
729         t!(fs::create_dir_all(exe.join("cargo")));
730         t!(fs::create_dir_all(exe.join("rust-docs")));
731         t!(fs::create_dir_all(exe.join("rust-std")));
732         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rustc"), target))
733                   .join("rustc"),
734              &exe.join("rustc"));
735         cp_r(&work.join(&format!("{}-{}", pkgname(build, "cargo"), target))
736                   .join("cargo"),
737              &exe.join("cargo"));
738         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-docs"), target))
739                   .join("rust-docs"),
740              &exe.join("rust-docs"));
741         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-std"), target))
742                   .join(format!("rust-std-{}", target)),
743              &exe.join("rust-std"));
744
745         t!(fs::remove_file(exe.join("rustc/manifest.in")));
746         t!(fs::remove_file(exe.join("cargo/manifest.in")));
747         t!(fs::remove_file(exe.join("rust-docs/manifest.in")));
748         t!(fs::remove_file(exe.join("rust-std/manifest.in")));
749
750         if target.contains("windows-gnu") {
751             t!(fs::create_dir_all(exe.join("rust-mingw")));
752             cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-mingw"), target))
753                       .join("rust-mingw"),
754                  &exe.join("rust-mingw"));
755             t!(fs::remove_file(exe.join("rust-mingw/manifest.in")));
756         }
757
758         install(&etc.join("exe/rust.iss"), &exe, 0o644);
759         install(&etc.join("exe/modpath.iss"), &exe, 0o644);
760         install(&etc.join("exe/upgrade.iss"), &exe, 0o644);
761         install(&etc.join("gfx/rust-logo.ico"), &exe, 0o644);
762         t!(t!(File::create(exe.join("LICENSE.txt"))).write_all(license.as_bytes()));
763
764         // Generate exe installer
765         let mut cmd = Command::new("iscc");
766         cmd.arg("rust.iss")
767            .current_dir(&exe);
768         if target.contains("windows-gnu") {
769             cmd.arg("/dMINGW");
770         }
771         add_env(build, &mut cmd, target);
772         build.run(&mut cmd);
773         install(&exe.join(format!("{}-{}.exe", pkgname(build, "rust"), target)),
774                 &distdir(build),
775                 0o755);
776
777         // Generate msi installer
778         let wix = PathBuf::from(env::var_os("WIX").unwrap());
779         let heat = wix.join("bin/heat.exe");
780         let candle = wix.join("bin/candle.exe");
781         let light = wix.join("bin/light.exe");
782
783         let heat_flags = ["-nologo", "-gg", "-sfrag", "-srd", "-sreg"];
784         build.run(Command::new(&heat)
785                         .current_dir(&exe)
786                         .arg("dir")
787                         .arg("rustc")
788                         .args(&heat_flags)
789                         .arg("-cg").arg("RustcGroup")
790                         .arg("-dr").arg("Rustc")
791                         .arg("-var").arg("var.RustcDir")
792                         .arg("-out").arg(exe.join("RustcGroup.wxs")));
793         build.run(Command::new(&heat)
794                         .current_dir(&exe)
795                         .arg("dir")
796                         .arg("rust-docs")
797                         .args(&heat_flags)
798                         .arg("-cg").arg("DocsGroup")
799                         .arg("-dr").arg("Docs")
800                         .arg("-var").arg("var.DocsDir")
801                         .arg("-out").arg(exe.join("DocsGroup.wxs"))
802                         .arg("-t").arg(etc.join("msi/squash-components.xsl")));
803         build.run(Command::new(&heat)
804                         .current_dir(&exe)
805                         .arg("dir")
806                         .arg("cargo")
807                         .args(&heat_flags)
808                         .arg("-cg").arg("CargoGroup")
809                         .arg("-dr").arg("Cargo")
810                         .arg("-var").arg("var.CargoDir")
811                         .arg("-out").arg(exe.join("CargoGroup.wxs"))
812                         .arg("-t").arg(etc.join("msi/remove-duplicates.xsl")));
813         build.run(Command::new(&heat)
814                         .current_dir(&exe)
815                         .arg("dir")
816                         .arg("rust-std")
817                         .args(&heat_flags)
818                         .arg("-cg").arg("StdGroup")
819                         .arg("-dr").arg("Std")
820                         .arg("-var").arg("var.StdDir")
821                         .arg("-out").arg(exe.join("StdGroup.wxs")));
822         if target.contains("windows-gnu") {
823             build.run(Command::new(&heat)
824                             .current_dir(&exe)
825                             .arg("dir")
826                             .arg("rust-mingw")
827                             .args(&heat_flags)
828                             .arg("-cg").arg("GccGroup")
829                             .arg("-dr").arg("Gcc")
830                             .arg("-var").arg("var.GccDir")
831                             .arg("-out").arg(exe.join("GccGroup.wxs")));
832         }
833
834         let candle = |input: &Path| {
835             let output = exe.join(input.file_stem().unwrap())
836                             .with_extension("wixobj");
837             let arch = if target.contains("x86_64") {"x64"} else {"x86"};
838             let mut cmd = Command::new(&candle);
839             cmd.current_dir(&exe)
840                .arg("-nologo")
841                .arg("-dRustcDir=rustc")
842                .arg("-dDocsDir=rust-docs")
843                .arg("-dCargoDir=cargo")
844                .arg("-dStdDir=rust-std")
845                .arg("-arch").arg(&arch)
846                .arg("-out").arg(&output)
847                .arg(&input);
848             add_env(build, &mut cmd, target);
849
850             if target.contains("windows-gnu") {
851                cmd.arg("-dGccDir=rust-mingw");
852             }
853             build.run(&mut cmd);
854         };
855         candle(&etc.join("msi/rust.wxs"));
856         candle(&etc.join("msi/ui.wxs"));
857         candle(&etc.join("msi/rustwelcomedlg.wxs"));
858         candle("RustcGroup.wxs".as_ref());
859         candle("DocsGroup.wxs".as_ref());
860         candle("CargoGroup.wxs".as_ref());
861         candle("StdGroup.wxs".as_ref());
862
863         if target.contains("windows-gnu") {
864             candle("GccGroup.wxs".as_ref());
865         }
866
867         t!(t!(File::create(exe.join("LICENSE.rtf"))).write_all(rtf.as_bytes()));
868         install(&etc.join("gfx/banner.bmp"), &exe, 0o644);
869         install(&etc.join("gfx/dialogbg.bmp"), &exe, 0o644);
870
871         let filename = format!("{}-{}.msi", pkgname(build, "rust"), target);
872         let mut cmd = Command::new(&light);
873         cmd.arg("-nologo")
874            .arg("-ext").arg("WixUIExtension")
875            .arg("-ext").arg("WixUtilExtension")
876            .arg("-out").arg(exe.join(&filename))
877            .arg("rust.wixobj")
878            .arg("ui.wixobj")
879            .arg("rustwelcomedlg.wixobj")
880            .arg("RustcGroup.wixobj")
881            .arg("DocsGroup.wixobj")
882            .arg("CargoGroup.wixobj")
883            .arg("StdGroup.wixobj")
884            .current_dir(&exe);
885
886         if target.contains("windows-gnu") {
887            cmd.arg("GccGroup.wixobj");
888         }
889         // ICE57 wrongly complains about the shortcuts
890         cmd.arg("-sice:ICE57");
891
892         build.run(&mut cmd);
893
894         t!(fs::rename(exe.join(&filename), distdir(build).join(&filename)));
895     }
896 }
897
898 fn add_env(build: &Build, cmd: &mut Command, target: &str) {
899     let mut parts = channel::CFG_RELEASE_NUM.split('.');
900     cmd.env("CFG_RELEASE_INFO", build.rust_version())
901        .env("CFG_RELEASE_NUM", channel::CFG_RELEASE_NUM)
902        .env("CFG_RELEASE", build.rust_release())
903        .env("CFG_PRERELEASE_VERSION", channel::CFG_PRERELEASE_VERSION)
904        .env("CFG_VER_MAJOR", parts.next().unwrap())
905        .env("CFG_VER_MINOR", parts.next().unwrap())
906        .env("CFG_VER_PATCH", parts.next().unwrap())
907        .env("CFG_VER_BUILD", "0") // just needed to build
908        .env("CFG_PACKAGE_VERS", build.rust_package_vers())
909        .env("CFG_PACKAGE_NAME", pkgname(build, "rust"))
910        .env("CFG_BUILD", target)
911        .env("CFG_CHANNEL", &build.config.channel);
912
913     if target.contains("windows-gnu") {
914        cmd.env("CFG_MINGW", "1")
915           .env("CFG_ABI", "GNU");
916     } else {
917        cmd.env("CFG_MINGW", "0")
918           .env("CFG_ABI", "MSVC");
919     }
920
921     if target.contains("x86_64") {
922        cmd.env("CFG_PLATFORM", "x64");
923     } else {
924        cmd.env("CFG_PLATFORM", "x86");
925     }
926 }
927
928 pub fn hash_and_sign(build: &Build) {
929     let compiler = Compiler::new(0, &build.config.build);
930     let mut cmd = build.tool_cmd(&compiler, "build-manifest");
931     let sign = build.config.dist_sign_folder.as_ref().unwrap_or_else(|| {
932         panic!("\n\nfailed to specify `dist.sign-folder` in `config.toml`\n\n")
933     });
934     let addr = build.config.dist_upload_addr.as_ref().unwrap_or_else(|| {
935         panic!("\n\nfailed to specify `dist.upload-addr` in `config.toml`\n\n")
936     });
937     let file = build.config.dist_gpg_password_file.as_ref().unwrap_or_else(|| {
938         panic!("\n\nfailed to specify `dist.gpg-password-file` in `config.toml`\n\n")
939     });
940     let mut pass = String::new();
941     t!(t!(File::open(&file)).read_to_string(&mut pass));
942
943     let today = output(Command::new("date").arg("+%Y-%m-%d"));
944
945     cmd.arg(sign);
946     cmd.arg(distdir(build));
947     cmd.arg(today.trim());
948     cmd.arg(build.rust_package_vers());
949     cmd.arg(build.package_vers(&build.cargo_release_num()));
950     cmd.arg(addr);
951
952     t!(fs::create_dir_all(distdir(build)));
953
954     let mut child = t!(cmd.stdin(Stdio::piped()).spawn());
955     t!(child.stdin.take().unwrap().write_all(pass.as_bytes()));
956     let status = t!(child.wait());
957     assert!(status.success());
958 }