]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/dist.rs
Remove --enable-save-analysis configure flag
[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") || component == "rls");
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     assert!(build.config.extended);
319     println!("Dist analysis");
320
321     if compiler.host != build.config.build {
322         println!("\tskipping, not a build host");
323         return;
324     }
325
326     // Package save-analysis from stage1 if not doing a full bootstrap, as the
327     // stage2 artifacts is simply copied from stage1 in that case.
328     let compiler = if build.force_use_stage1(compiler, target) {
329         Compiler::new(1, compiler.host)
330     } else {
331         compiler.clone()
332     };
333
334     let name = pkgname(build, "rust-analysis");
335     let image = tmpdir(build).join(format!("{}-{}-image", name, target));
336
337     let src = build.stage_out(&compiler, Mode::Libstd).join(target).join("release").join("deps");
338
339     let image_src = src.join("save-analysis");
340     let dst = image.join("lib/rustlib").join(target).join("analysis");
341     t!(fs::create_dir_all(&dst));
342     println!("image_src: {:?}, dst: {:?}", image_src, dst);
343     cp_r(&image_src, &dst);
344
345     let mut cmd = Command::new(SH_CMD);
346     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
347        .arg("--product-name=Rust")
348        .arg("--rel-manifest-dir=rustlib")
349        .arg("--success-message=save-analysis-saved.")
350        .arg(format!("--image-dir={}", sanitize_sh(&image)))
351        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
352        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
353        .arg(format!("--package-name={}-{}", name, target))
354        .arg(format!("--component-name=rust-analysis-{}", target))
355        .arg("--legacy-manifest-dirs=rustlib,cargo");
356     build.run(&mut cmd);
357     t!(fs::remove_dir_all(&image));
358 }
359
360 const CARGO_VENDOR_VERSION: &'static str = "0.1.4";
361
362 /// Creates the `rust-src` installer component and the plain source tarball
363 pub fn rust_src(build: &Build) {
364     if !build.config.rust_dist_src {
365         return
366     }
367
368     println!("Dist src");
369
370     let name = pkgname(build, "rust-src");
371     let image = tmpdir(build).join(format!("{}-image", name));
372     let _ = fs::remove_dir_all(&image);
373
374     let dst = image.join("lib/rustlib/src");
375     let dst_src = dst.join("rust");
376     t!(fs::create_dir_all(&dst_src));
377
378     // This is the set of root paths which will become part of the source package
379     let src_files = [
380         "COPYRIGHT",
381         "LICENSE-APACHE",
382         "LICENSE-MIT",
383         "CONTRIBUTING.md",
384         "README.md",
385         "RELEASES.md",
386         "configure",
387         "x.py",
388     ];
389     let src_dirs = [
390         "man",
391         "src",
392         "cargo",
393         "rls",
394     ];
395
396     let filter_fn = move |path: &Path| {
397         let spath = match path.to_str() {
398             Some(path) => path,
399             None => return false,
400         };
401         if spath.ends_with("~") || spath.ends_with(".pyc") {
402             return false
403         }
404         if spath.contains("llvm/test") || spath.contains("llvm\\test") {
405             if spath.ends_with(".ll") ||
406                spath.ends_with(".td") ||
407                spath.ends_with(".s") {
408                 return false
409             }
410         }
411
412         let excludes = [
413             "CVS", "RCS", "SCCS", ".git", ".gitignore", ".gitmodules",
414             ".gitattributes", ".cvsignore", ".svn", ".arch-ids", "{arch}",
415             "=RELEASE-ID", "=meta-update", "=update", ".bzr", ".bzrignore",
416             ".bzrtags", ".hg", ".hgignore", ".hgrags", "_darcs",
417         ];
418         !path.iter()
419              .map(|s| s.to_str().unwrap())
420              .any(|s| excludes.contains(&s))
421     };
422
423     // Copy the directories using our filter
424     for item in &src_dirs {
425         let dst = &dst_src.join(item);
426         t!(fs::create_dir(dst));
427         cp_filtered(&build.src.join(item), dst, &filter_fn);
428     }
429     // Copy the files normally
430     for item in &src_files {
431         copy(&build.src.join(item), &dst_src.join(item));
432     }
433
434     // If we're building from git sources, we need to vendor a complete distribution.
435     if build.src_is_git {
436         // Get cargo-vendor installed, if it isn't already.
437         let mut has_cargo_vendor = false;
438         let mut cmd = Command::new(&build.cargo);
439         for line in output(cmd.arg("install").arg("--list")).lines() {
440             has_cargo_vendor |= line.starts_with("cargo-vendor ");
441         }
442         if !has_cargo_vendor {
443             let mut cmd = Command::new(&build.cargo);
444             cmd.arg("install")
445                .arg("--force")
446                .arg("--debug")
447                .arg("--vers").arg(CARGO_VENDOR_VERSION)
448                .arg("cargo-vendor")
449                .env("RUSTC", &build.rustc);
450             build.run(&mut cmd);
451         }
452
453         // Vendor all Cargo dependencies
454         let mut cmd = Command::new(&build.cargo);
455         cmd.arg("vendor")
456            .current_dir(&dst_src.join("src"));
457         build.run(&mut cmd);
458     }
459
460     // Create source tarball in rust-installer format
461     let mut cmd = Command::new(SH_CMD);
462     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
463        .arg("--product-name=Rust")
464        .arg("--rel-manifest-dir=rustlib")
465        .arg("--success-message=Awesome-Source.")
466        .arg(format!("--image-dir={}", sanitize_sh(&image)))
467        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
468        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
469        .arg(format!("--package-name={}", name))
470        .arg("--component-name=rust-src")
471        .arg("--legacy-manifest-dirs=rustlib,cargo");
472     build.run(&mut cmd);
473
474     // Rename directory, so that root folder of tarball has the correct name
475     let plain_name = format!("rustc-{}-src", build.rust_package_vers());
476     let plain_dst_src = tmpdir(build).join(&plain_name);
477     let _ = fs::remove_dir_all(&plain_dst_src);
478     t!(fs::create_dir_all(&plain_dst_src));
479     cp_r(&dst_src, &plain_dst_src);
480
481     // Create the version file
482     write_file(&plain_dst_src.join("version"), build.rust_version().as_bytes());
483
484     // Create plain source tarball
485     let mut cmd = Command::new("tar");
486     cmd.arg("-czf").arg(sanitize_sh(&rust_src_location(build)))
487        .arg(&plain_name)
488        .current_dir(tmpdir(build));
489     build.run(&mut cmd);
490
491     t!(fs::remove_dir_all(&image));
492     t!(fs::remove_dir_all(&plain_dst_src));
493 }
494
495 fn install(src: &Path, dstdir: &Path, perms: u32) {
496     let dst = dstdir.join(src.file_name().unwrap());
497     t!(fs::create_dir_all(dstdir));
498     t!(fs::copy(src, &dst));
499     chmod(&dst, perms);
500 }
501
502 #[cfg(unix)]
503 fn chmod(path: &Path, perms: u32) {
504     use std::os::unix::fs::*;
505     t!(fs::set_permissions(path, fs::Permissions::from_mode(perms)));
506 }
507 #[cfg(windows)]
508 fn chmod(_path: &Path, _perms: u32) {}
509
510 // We have to run a few shell scripts, which choke quite a bit on both `\`
511 // characters and on `C:\` paths, so normalize both of them away.
512 pub fn sanitize_sh(path: &Path) -> String {
513     let path = path.to_str().unwrap().replace("\\", "/");
514     return change_drive(&path).unwrap_or(path);
515
516     fn change_drive(s: &str) -> Option<String> {
517         let mut ch = s.chars();
518         let drive = ch.next().unwrap_or('C');
519         if ch.next() != Some(':') {
520             return None
521         }
522         if ch.next() != Some('/') {
523             return None
524         }
525         Some(format!("/{}/{}", drive, &s[drive.len_utf8() + 2..]))
526     }
527 }
528
529 fn write_file(path: &Path, data: &[u8]) {
530     let mut vf = t!(fs::File::create(path));
531     t!(vf.write_all(data));
532 }
533
534 pub fn cargo(build: &Build, stage: u32, target: &str) {
535     println!("Dist cargo stage{} ({})", stage, target);
536     let compiler = Compiler::new(stage, &build.config.build);
537
538     let src = build.src.join("cargo");
539     let etc = src.join("src/etc");
540     let release_num = build.release_num("cargo");
541     let name = pkgname(build, "cargo");
542     let version = build.cargo_info.version(build, &release_num);
543
544     let tmp = tmpdir(build);
545     let image = tmp.join("cargo-image");
546     drop(fs::remove_dir_all(&image));
547     t!(fs::create_dir_all(&image));
548
549     // Prepare the image directory
550     t!(fs::create_dir_all(image.join("share/zsh/site-functions")));
551     t!(fs::create_dir_all(image.join("etc/bash_completions.d")));
552     let cargo = build.cargo_out(&compiler, Mode::Tool, target)
553                      .join(exe("cargo", target));
554     install(&cargo, &image.join("bin"), 0o755);
555     for man in t!(etc.join("man").read_dir()) {
556         let man = t!(man);
557         install(&man.path(), &image.join("share/man/man1"), 0o644);
558     }
559     install(&etc.join("_cargo"), &image.join("share/zsh/site-functions"), 0o644);
560     copy(&etc.join("cargo.bashcomp.sh"),
561          &image.join("etc/bash_completions.d/cargo"));
562     let doc = image.join("share/doc/cargo");
563     install(&src.join("README.md"), &doc, 0o644);
564     install(&src.join("LICENSE-MIT"), &doc, 0o644);
565     install(&src.join("LICENSE-APACHE"), &doc, 0o644);
566     install(&src.join("LICENSE-THIRD-PARTY"), &doc, 0o644);
567
568     // Prepare the overlay
569     let overlay = tmp.join("cargo-overlay");
570     drop(fs::remove_dir_all(&overlay));
571     t!(fs::create_dir_all(&overlay));
572     install(&src.join("README.md"), &overlay, 0o644);
573     install(&src.join("LICENSE-MIT"), &overlay, 0o644);
574     install(&src.join("LICENSE-APACHE"), &overlay, 0o644);
575     install(&src.join("LICENSE-THIRD-PARTY"), &overlay, 0o644);
576     t!(t!(File::create(overlay.join("version"))).write_all(version.as_bytes()));
577
578     // Generate the installer tarball
579     let mut cmd = Command::new("sh");
580     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
581        .arg("--product-name=Rust")
582        .arg("--rel-manifest-dir=rustlib")
583        .arg("--success-message=Rust-is-ready-to-roll.")
584        .arg(format!("--image-dir={}", sanitize_sh(&image)))
585        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
586        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
587        .arg(format!("--non-installed-overlay={}", sanitize_sh(&overlay)))
588        .arg(format!("--package-name={}-{}", name, target))
589        .arg("--component-name=cargo")
590        .arg("--legacy-manifest-dirs=rustlib,cargo");
591     build.run(&mut cmd);
592 }
593
594 pub fn rls(build: &Build, stage: u32, target: &str) {
595     assert!(build.config.extended);
596     println!("Dist RLS stage{} ({})", stage, target);
597     let compiler = Compiler::new(stage, &build.config.build);
598
599     let src = build.src.join("rls");
600     let release_num = build.release_num("rls");
601     let name = format!("rls-{}", build.package_vers(&release_num));
602
603     let tmp = tmpdir(build);
604     let image = tmp.join("rls-image");
605     drop(fs::remove_dir_all(&image));
606     t!(fs::create_dir_all(&image));
607
608     // Prepare the image directory
609     let rls = build.cargo_out(&compiler, Mode::Tool, target)
610                      .join(exe("rls", target));
611     install(&rls, &image.join("bin"), 0o755);
612     let doc = image.join("share/doc/rls");
613     install(&src.join("README.md"), &doc, 0o644);
614     install(&src.join("LICENSE-MIT"), &doc, 0o644);
615     install(&src.join("LICENSE-APACHE"), &doc, 0o644);
616
617     // Generate the installer tarball
618     let mut cmd = Command::new("sh");
619     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/gen-installer.sh")))
620        .arg("--product-name=Rust")
621        .arg("--rel-manifest-dir=rustlib")
622        .arg("--success-message=RLS-ready-to-serve.")
623        .arg(format!("--image-dir={}", sanitize_sh(&image)))
624        .arg(format!("--work-dir={}", sanitize_sh(&tmpdir(build))))
625        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
626        .arg(format!("--package-name={}-{}", name, target))
627        .arg("--component-name=rls")
628        .arg("--legacy-manifest-dirs=rustlib,cargo");
629     build.run(&mut cmd);
630 }
631
632 /// Creates a combined installer for the specified target in the provided stage.
633 pub fn extended(build: &Build, stage: u32, target: &str) {
634     println!("Dist extended stage{} ({})", stage, target);
635
636     let dist = distdir(build);
637     let rustc_installer = dist.join(format!("{}-{}.tar.gz",
638                                             pkgname(build, "rustc"),
639                                             target));
640     let cargo_installer = dist.join(format!("{}-{}.tar.gz",
641                                             pkgname(build, "cargo"),
642                                             target));
643     let rls_installer = dist.join(format!("{}-{}.tar.gz",
644                                           pkgname(build, "rls"),
645                                           target));
646     let analysis_installer = dist.join(format!("{}-{}.tar.gz",
647                                                pkgname(build, "rust-analysis"),
648                                                target));
649     let docs_installer = dist.join(format!("{}-{}.tar.gz",
650                                            pkgname(build, "rust-docs"),
651                                            target));
652     let mingw_installer = dist.join(format!("{}-{}.tar.gz",
653                                             pkgname(build, "rust-mingw"),
654                                             target));
655     let std_installer = dist.join(format!("{}-{}.tar.gz",
656                                           pkgname(build, "rust-std"),
657                                           target));
658
659     let tmp = tmpdir(build);
660     let overlay = tmp.join("extended-overlay");
661     let etc = build.src.join("src/etc/installer");
662     let work = tmp.join("work");
663
664     let _ = fs::remove_dir_all(&overlay);
665     install(&build.src.join("COPYRIGHT"), &overlay, 0o644);
666     install(&build.src.join("LICENSE-APACHE"), &overlay, 0o644);
667     install(&build.src.join("LICENSE-MIT"), &overlay, 0o644);
668     let version = build.rust_version();
669     t!(t!(File::create(overlay.join("version"))).write_all(version.as_bytes()));
670     install(&etc.join("README.md"), &overlay, 0o644);
671
672     // When rust-std package split from rustc, we needed to ensure that during
673     // upgrades rustc was upgraded before rust-std. To avoid rustc clobbering
674     // the std files during uninstall. To do this ensure that rustc comes
675     // before rust-std in the list below.
676     let mut input_tarballs = format!("{},{},{},{},{},{}",
677                                      sanitize_sh(&rustc_installer),
678                                      sanitize_sh(&cargo_installer),
679                                      sanitize_sh(&rls_installer),
680                                      sanitize_sh(&analysis_installer),
681                                      sanitize_sh(&docs_installer),
682                                      sanitize_sh(&std_installer));
683     if target.contains("pc-windows-gnu") {
684         input_tarballs.push_str(",");
685         input_tarballs.push_str(&sanitize_sh(&mingw_installer));
686     }
687
688     let mut cmd = Command::new(SH_CMD);
689     cmd.arg(sanitize_sh(&build.src.join("src/rust-installer/combine-installers.sh")))
690        .arg("--product-name=Rust")
691        .arg("--rel-manifest-dir=rustlib")
692        .arg("--success-message=Rust-is-ready-to-roll.")
693        .arg(format!("--work-dir={}", sanitize_sh(&work)))
694        .arg(format!("--output-dir={}", sanitize_sh(&distdir(build))))
695        .arg(format!("--package-name={}-{}", pkgname(build, "rust"), target))
696        .arg("--legacy-manifest-dirs=rustlib,cargo")
697        .arg(format!("--input-tarballs={}", input_tarballs))
698        .arg(format!("--non-installed-overlay={}", sanitize_sh(&overlay)));
699     build.run(&mut cmd);
700
701     let mut license = String::new();
702     t!(t!(File::open(build.src.join("COPYRIGHT"))).read_to_string(&mut license));
703     license.push_str("\n");
704     t!(t!(File::open(build.src.join("LICENSE-APACHE"))).read_to_string(&mut license));
705     license.push_str("\n");
706     t!(t!(File::open(build.src.join("LICENSE-MIT"))).read_to_string(&mut license));
707
708     let rtf = r"{\rtf1\ansi\deff0{\fonttbl{\f0\fnil\fcharset0 Arial;}}\nowwrap\fs18";
709     let mut rtf = rtf.to_string();
710     rtf.push_str("\n");
711     for line in license.lines() {
712         rtf.push_str(line);
713         rtf.push_str("\\line ");
714     }
715     rtf.push_str("}");
716
717     if target.contains("apple-darwin") {
718         let pkg = tmp.join("pkg");
719         let _ = fs::remove_dir_all(&pkg);
720         t!(fs::create_dir_all(pkg.join("rustc")));
721         t!(fs::create_dir_all(pkg.join("cargo")));
722         t!(fs::create_dir_all(pkg.join("rust-docs")));
723         t!(fs::create_dir_all(pkg.join("rust-std")));
724
725         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rustc"), target)),
726              &pkg.join("rustc"));
727         cp_r(&work.join(&format!("{}-{}", pkgname(build, "cargo"), target)),
728              &pkg.join("cargo"));
729         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-docs"), target)),
730              &pkg.join("rust-docs"));
731         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-std"), target)),
732              &pkg.join("rust-std"));
733
734         install(&etc.join("pkg/postinstall"), &pkg.join("rustc"), 0o755);
735         install(&etc.join("pkg/postinstall"), &pkg.join("cargo"), 0o755);
736         install(&etc.join("pkg/postinstall"), &pkg.join("rust-docs"), 0o755);
737         install(&etc.join("pkg/postinstall"), &pkg.join("rust-std"), 0o755);
738
739         let pkgbuild = |component: &str| {
740             let mut cmd = Command::new("pkgbuild");
741             cmd.arg("--identifier").arg(format!("org.rust-lang.{}", component))
742                .arg("--scripts").arg(pkg.join(component))
743                .arg("--nopayload")
744                .arg(pkg.join(component).with_extension("pkg"));
745             build.run(&mut cmd);
746         };
747         pkgbuild("rustc");
748         pkgbuild("cargo");
749         pkgbuild("rust-docs");
750         pkgbuild("rust-std");
751
752         // create an 'uninstall' package
753         install(&etc.join("pkg/postinstall"), &pkg.join("uninstall"), 0o755);
754         pkgbuild("uninstall");
755
756         t!(fs::create_dir_all(pkg.join("res")));
757         t!(t!(File::create(pkg.join("res/LICENSE.txt"))).write_all(license.as_bytes()));
758         install(&etc.join("gfx/rust-logo.png"), &pkg.join("res"), 0o644);
759         let mut cmd = Command::new("productbuild");
760         cmd.arg("--distribution").arg(etc.join("pkg/Distribution.xml"))
761            .arg("--resources").arg(pkg.join("res"))
762            .arg(distdir(build).join(format!("{}-{}.pkg",
763                                              pkgname(build, "rust"),
764                                              target)))
765            .arg("--package-path").arg(&pkg);
766         build.run(&mut cmd);
767     }
768
769     if target.contains("windows") {
770         let exe = tmp.join("exe");
771         let _ = fs::remove_dir_all(&exe);
772         t!(fs::create_dir_all(exe.join("rustc")));
773         t!(fs::create_dir_all(exe.join("cargo")));
774         t!(fs::create_dir_all(exe.join("rust-docs")));
775         t!(fs::create_dir_all(exe.join("rust-std")));
776         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rustc"), target))
777                   .join("rustc"),
778              &exe.join("rustc"));
779         cp_r(&work.join(&format!("{}-{}", pkgname(build, "cargo"), target))
780                   .join("cargo"),
781              &exe.join("cargo"));
782         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-docs"), target))
783                   .join("rust-docs"),
784              &exe.join("rust-docs"));
785         cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-std"), target))
786                   .join(format!("rust-std-{}", target)),
787              &exe.join("rust-std"));
788
789         t!(fs::remove_file(exe.join("rustc/manifest.in")));
790         t!(fs::remove_file(exe.join("cargo/manifest.in")));
791         t!(fs::remove_file(exe.join("rust-docs/manifest.in")));
792         t!(fs::remove_file(exe.join("rust-std/manifest.in")));
793
794         if target.contains("windows-gnu") {
795             t!(fs::create_dir_all(exe.join("rust-mingw")));
796             cp_r(&work.join(&format!("{}-{}", pkgname(build, "rust-mingw"), target))
797                       .join("rust-mingw"),
798                  &exe.join("rust-mingw"));
799             t!(fs::remove_file(exe.join("rust-mingw/manifest.in")));
800         }
801
802         install(&etc.join("exe/rust.iss"), &exe, 0o644);
803         install(&etc.join("exe/modpath.iss"), &exe, 0o644);
804         install(&etc.join("exe/upgrade.iss"), &exe, 0o644);
805         install(&etc.join("gfx/rust-logo.ico"), &exe, 0o644);
806         t!(t!(File::create(exe.join("LICENSE.txt"))).write_all(license.as_bytes()));
807
808         // Generate exe installer
809         let mut cmd = Command::new("iscc");
810         cmd.arg("rust.iss")
811            .current_dir(&exe);
812         if target.contains("windows-gnu") {
813             cmd.arg("/dMINGW");
814         }
815         add_env(build, &mut cmd, target);
816         build.run(&mut cmd);
817         install(&exe.join(format!("{}-{}.exe", pkgname(build, "rust"), target)),
818                 &distdir(build),
819                 0o755);
820
821         // Generate msi installer
822         let wix = PathBuf::from(env::var_os("WIX").unwrap());
823         let heat = wix.join("bin/heat.exe");
824         let candle = wix.join("bin/candle.exe");
825         let light = wix.join("bin/light.exe");
826
827         let heat_flags = ["-nologo", "-gg", "-sfrag", "-srd", "-sreg"];
828         build.run(Command::new(&heat)
829                         .current_dir(&exe)
830                         .arg("dir")
831                         .arg("rustc")
832                         .args(&heat_flags)
833                         .arg("-cg").arg("RustcGroup")
834                         .arg("-dr").arg("Rustc")
835                         .arg("-var").arg("var.RustcDir")
836                         .arg("-out").arg(exe.join("RustcGroup.wxs")));
837         build.run(Command::new(&heat)
838                         .current_dir(&exe)
839                         .arg("dir")
840                         .arg("rust-docs")
841                         .args(&heat_flags)
842                         .arg("-cg").arg("DocsGroup")
843                         .arg("-dr").arg("Docs")
844                         .arg("-var").arg("var.DocsDir")
845                         .arg("-out").arg(exe.join("DocsGroup.wxs"))
846                         .arg("-t").arg(etc.join("msi/squash-components.xsl")));
847         build.run(Command::new(&heat)
848                         .current_dir(&exe)
849                         .arg("dir")
850                         .arg("cargo")
851                         .args(&heat_flags)
852                         .arg("-cg").arg("CargoGroup")
853                         .arg("-dr").arg("Cargo")
854                         .arg("-var").arg("var.CargoDir")
855                         .arg("-out").arg(exe.join("CargoGroup.wxs"))
856                         .arg("-t").arg(etc.join("msi/remove-duplicates.xsl")));
857         build.run(Command::new(&heat)
858                         .current_dir(&exe)
859                         .arg("dir")
860                         .arg("rust-std")
861                         .args(&heat_flags)
862                         .arg("-cg").arg("StdGroup")
863                         .arg("-dr").arg("Std")
864                         .arg("-var").arg("var.StdDir")
865                         .arg("-out").arg(exe.join("StdGroup.wxs")));
866         if target.contains("windows-gnu") {
867             build.run(Command::new(&heat)
868                             .current_dir(&exe)
869                             .arg("dir")
870                             .arg("rust-mingw")
871                             .args(&heat_flags)
872                             .arg("-cg").arg("GccGroup")
873                             .arg("-dr").arg("Gcc")
874                             .arg("-var").arg("var.GccDir")
875                             .arg("-out").arg(exe.join("GccGroup.wxs")));
876         }
877
878         let candle = |input: &Path| {
879             let output = exe.join(input.file_stem().unwrap())
880                             .with_extension("wixobj");
881             let arch = if target.contains("x86_64") {"x64"} else {"x86"};
882             let mut cmd = Command::new(&candle);
883             cmd.current_dir(&exe)
884                .arg("-nologo")
885                .arg("-dRustcDir=rustc")
886                .arg("-dDocsDir=rust-docs")
887                .arg("-dCargoDir=cargo")
888                .arg("-dStdDir=rust-std")
889                .arg("-arch").arg(&arch)
890                .arg("-out").arg(&output)
891                .arg(&input);
892             add_env(build, &mut cmd, target);
893
894             if target.contains("windows-gnu") {
895                cmd.arg("-dGccDir=rust-mingw");
896             }
897             build.run(&mut cmd);
898         };
899         candle(&etc.join("msi/rust.wxs"));
900         candle(&etc.join("msi/ui.wxs"));
901         candle(&etc.join("msi/rustwelcomedlg.wxs"));
902         candle("RustcGroup.wxs".as_ref());
903         candle("DocsGroup.wxs".as_ref());
904         candle("CargoGroup.wxs".as_ref());
905         candle("StdGroup.wxs".as_ref());
906
907         if target.contains("windows-gnu") {
908             candle("GccGroup.wxs".as_ref());
909         }
910
911         t!(t!(File::create(exe.join("LICENSE.rtf"))).write_all(rtf.as_bytes()));
912         install(&etc.join("gfx/banner.bmp"), &exe, 0o644);
913         install(&etc.join("gfx/dialogbg.bmp"), &exe, 0o644);
914
915         let filename = format!("{}-{}.msi", pkgname(build, "rust"), target);
916         let mut cmd = Command::new(&light);
917         cmd.arg("-nologo")
918            .arg("-ext").arg("WixUIExtension")
919            .arg("-ext").arg("WixUtilExtension")
920            .arg("-out").arg(exe.join(&filename))
921            .arg("rust.wixobj")
922            .arg("ui.wixobj")
923            .arg("rustwelcomedlg.wixobj")
924            .arg("RustcGroup.wixobj")
925            .arg("DocsGroup.wixobj")
926            .arg("CargoGroup.wixobj")
927            .arg("StdGroup.wixobj")
928            .current_dir(&exe);
929
930         if target.contains("windows-gnu") {
931            cmd.arg("GccGroup.wixobj");
932         }
933         // ICE57 wrongly complains about the shortcuts
934         cmd.arg("-sice:ICE57");
935
936         build.run(&mut cmd);
937
938         t!(fs::rename(exe.join(&filename), distdir(build).join(&filename)));
939     }
940 }
941
942 fn add_env(build: &Build, cmd: &mut Command, target: &str) {
943     let mut parts = channel::CFG_RELEASE_NUM.split('.');
944     cmd.env("CFG_RELEASE_INFO", build.rust_version())
945        .env("CFG_RELEASE_NUM", channel::CFG_RELEASE_NUM)
946        .env("CFG_RELEASE", build.rust_release())
947        .env("CFG_PRERELEASE_VERSION", channel::CFG_PRERELEASE_VERSION)
948        .env("CFG_VER_MAJOR", parts.next().unwrap())
949        .env("CFG_VER_MINOR", parts.next().unwrap())
950        .env("CFG_VER_PATCH", parts.next().unwrap())
951        .env("CFG_VER_BUILD", "0") // just needed to build
952        .env("CFG_PACKAGE_VERS", build.rust_package_vers())
953        .env("CFG_PACKAGE_NAME", pkgname(build, "rust"))
954        .env("CFG_BUILD", target)
955        .env("CFG_CHANNEL", &build.config.channel);
956
957     if target.contains("windows-gnu") {
958        cmd.env("CFG_MINGW", "1")
959           .env("CFG_ABI", "GNU");
960     } else {
961        cmd.env("CFG_MINGW", "0")
962           .env("CFG_ABI", "MSVC");
963     }
964
965     if target.contains("x86_64") {
966        cmd.env("CFG_PLATFORM", "x64");
967     } else {
968        cmd.env("CFG_PLATFORM", "x86");
969     }
970 }
971
972 pub fn hash_and_sign(build: &Build) {
973     let compiler = Compiler::new(0, &build.config.build);
974     let mut cmd = build.tool_cmd(&compiler, "build-manifest");
975     let sign = build.config.dist_sign_folder.as_ref().unwrap_or_else(|| {
976         panic!("\n\nfailed to specify `dist.sign-folder` in `config.toml`\n\n")
977     });
978     let addr = build.config.dist_upload_addr.as_ref().unwrap_or_else(|| {
979         panic!("\n\nfailed to specify `dist.upload-addr` in `config.toml`\n\n")
980     });
981     let file = build.config.dist_gpg_password_file.as_ref().unwrap_or_else(|| {
982         panic!("\n\nfailed to specify `dist.gpg-password-file` in `config.toml`\n\n")
983     });
984     let mut pass = String::new();
985     t!(t!(File::open(&file)).read_to_string(&mut pass));
986
987     let today = output(Command::new("date").arg("+%Y-%m-%d"));
988
989     cmd.arg(sign);
990     cmd.arg(distdir(build));
991     cmd.arg(today.trim());
992     cmd.arg(build.rust_package_vers());
993     cmd.arg(build.package_vers(&build.release_num("cargo")));
994     cmd.arg(addr);
995
996     t!(fs::create_dir_all(distdir(build)));
997
998     let mut child = t!(cmd.stdin(Stdio::piped()).spawn());
999     t!(child.stdin.take().unwrap().write_all(pass.as_bytes()));
1000     let status = t!(child.wait());
1001     assert!(status.success());
1002 }