]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans/back/link.rs
Auto merge of #41282 - arielb1:missing-impl-item, r=petrochenkov
[rust.git] / src / librustc_trans / back / link.rs
1 // Copyright 2012-2014 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 use super::archive::{ArchiveBuilder, ArchiveConfig};
12 use super::linker::Linker;
13 use super::rpath::RPathConfig;
14 use super::rpath;
15 use super::msvc;
16 use session::config;
17 use session::config::NoDebugInfo;
18 use session::config::{OutputFilenames, Input, OutputType};
19 use session::filesearch;
20 use session::search_paths::PathKind;
21 use session::Session;
22 use middle::cstore::{self, LinkMeta, NativeLibrary, LibSource};
23 use middle::cstore::{LinkagePreference, NativeLibraryKind};
24 use middle::dependency_format::Linkage;
25 use CrateTranslation;
26 use util::common::time;
27 use util::fs::fix_windows_verbatim_for_gcc;
28 use rustc::dep_graph::DepNode;
29 use rustc::hir::def_id::CrateNum;
30 use rustc::hir::svh::Svh;
31 use rustc_back::tempdir::TempDir;
32 use rustc_back::PanicStrategy;
33 use rustc_incremental::IncrementalHashesMap;
34 use context::get_reloc_model;
35 use llvm;
36
37 use std::ascii;
38 use std::char;
39 use std::env;
40 use std::ffi::OsString;
41 use std::fs;
42 use std::io::{self, Read, Write};
43 use std::mem;
44 use std::path::{Path, PathBuf};
45 use std::process::Command;
46 use std::str;
47 use flate;
48 use syntax::ast;
49 use syntax::attr;
50 use syntax_pos::Span;
51
52 /// The LLVM module name containing crate-metadata. This includes a `.` on
53 /// purpose, so it cannot clash with the name of a user-defined module.
54 pub const METADATA_MODULE_NAME: &'static str = "crate.metadata";
55 /// The name of the crate-metadata object file the compiler generates. Must
56 /// match up with `METADATA_MODULE_NAME`.
57 pub const METADATA_OBJ_NAME: &'static str = "crate.metadata.o";
58
59 // RLIB LLVM-BYTECODE OBJECT LAYOUT
60 // Version 1
61 // Bytes    Data
62 // 0..10    "RUST_OBJECT" encoded in ASCII
63 // 11..14   format version as little-endian u32
64 // 15..22   size in bytes of deflate compressed LLVM bitcode as
65 //          little-endian u64
66 // 23..     compressed LLVM bitcode
67
68 // This is the "magic number" expected at the beginning of a LLVM bytecode
69 // object in an rlib.
70 pub const RLIB_BYTECODE_OBJECT_MAGIC: &'static [u8] = b"RUST_OBJECT";
71
72 // The version number this compiler will write to bytecode objects in rlibs
73 pub const RLIB_BYTECODE_OBJECT_VERSION: u32 = 1;
74
75 // The offset in bytes the bytecode object format version number can be found at
76 pub const RLIB_BYTECODE_OBJECT_VERSION_OFFSET: usize = 11;
77
78 // The offset in bytes the size of the compressed bytecode can be found at in
79 // format version 1
80 pub const RLIB_BYTECODE_OBJECT_V1_DATASIZE_OFFSET: usize =
81     RLIB_BYTECODE_OBJECT_VERSION_OFFSET + 4;
82
83 // The offset in bytes the compressed LLVM bytecode can be found at in format
84 // version 1
85 pub const RLIB_BYTECODE_OBJECT_V1_DATA_OFFSET: usize =
86     RLIB_BYTECODE_OBJECT_V1_DATASIZE_OFFSET + 8;
87
88
89 pub fn find_crate_name(sess: Option<&Session>,
90                        attrs: &[ast::Attribute],
91                        input: &Input) -> String {
92     let validate = |s: String, span: Option<Span>| {
93         cstore::validate_crate_name(sess, &s, span);
94         s
95     };
96
97     // Look in attributes 100% of the time to make sure the attribute is marked
98     // as used. After doing this, however, we still prioritize a crate name from
99     // the command line over one found in the #[crate_name] attribute. If we
100     // find both we ensure that they're the same later on as well.
101     let attr_crate_name = attrs.iter().find(|at| at.check_name("crate_name"))
102                                .and_then(|at| at.value_str().map(|s| (at, s)));
103
104     if let Some(sess) = sess {
105         if let Some(ref s) = sess.opts.crate_name {
106             if let Some((attr, name)) = attr_crate_name {
107                 if name != &**s {
108                     let msg = format!("--crate-name and #[crate_name] are \
109                                        required to match, but `{}` != `{}`",
110                                       s, name);
111                     sess.span_err(attr.span, &msg);
112                 }
113             }
114             return validate(s.clone(), None);
115         }
116     }
117
118     if let Some((attr, s)) = attr_crate_name {
119         return validate(s.to_string(), Some(attr.span));
120     }
121     if let Input::File(ref path) = *input {
122         if let Some(s) = path.file_stem().and_then(|s| s.to_str()) {
123             if s.starts_with("-") {
124                 let msg = format!("crate names cannot start with a `-`, but \
125                                    `{}` has a leading hyphen", s);
126                 if let Some(sess) = sess {
127                     sess.err(&msg);
128                 }
129             } else {
130                 return validate(s.replace("-", "_"), None);
131             }
132         }
133     }
134
135     "rust_out".to_string()
136 }
137
138 pub fn build_link_meta(incremental_hashes_map: &IncrementalHashesMap) -> LinkMeta {
139     let r = LinkMeta {
140         crate_hash: Svh::new(incremental_hashes_map[&DepNode::Krate].to_smaller_hash()),
141     };
142     info!("{:?}", r);
143     return r;
144 }
145
146 // The third parameter is for an extra path to add to PATH for MSVC
147 // cross linkers for host toolchain DLL dependencies
148 pub fn get_linker(sess: &Session) -> (String, Command, Option<PathBuf>) {
149     if let Some(ref linker) = sess.opts.cg.linker {
150         (linker.clone(), Command::new(linker), None)
151     } else if sess.target.target.options.is_like_msvc {
152         let (cmd, host) = msvc::link_exe_cmd(sess);
153         ("link.exe".to_string(), cmd, host)
154     } else {
155         (sess.target.target.options.linker.clone(),
156          Command::new(&sess.target.target.options.linker), None)
157     }
158 }
159
160 pub fn get_ar_prog(sess: &Session) -> String {
161     sess.opts.cg.ar.clone().unwrap_or_else(|| {
162         sess.target.target.options.ar.clone()
163     })
164 }
165
166 fn command_path(sess: &Session, extra: Option<PathBuf>) -> OsString {
167     // The compiler's sysroot often has some bundled tools, so add it to the
168     // PATH for the child.
169     let mut new_path = sess.host_filesearch(PathKind::All)
170                            .get_tools_search_paths();
171     if let Some(path) = env::var_os("PATH") {
172         new_path.extend(env::split_paths(&path));
173     }
174     new_path.extend(extra);
175     env::join_paths(new_path).unwrap()
176 }
177
178 pub fn remove(sess: &Session, path: &Path) {
179     match fs::remove_file(path) {
180         Ok(..) => {}
181         Err(e) => {
182             sess.err(&format!("failed to remove {}: {}",
183                              path.display(),
184                              e));
185         }
186     }
187 }
188
189 /// Perform the linkage portion of the compilation phase. This will generate all
190 /// of the requested outputs for this compilation session.
191 pub fn link_binary(sess: &Session,
192                    trans: &CrateTranslation,
193                    outputs: &OutputFilenames,
194                    crate_name: &str) -> Vec<PathBuf> {
195     let _task = sess.dep_graph.in_task(DepNode::LinkBinary);
196
197     let mut out_filenames = Vec::new();
198     for &crate_type in sess.crate_types.borrow().iter() {
199         // Ignore executable crates if we have -Z no-trans, as they will error.
200         if (sess.opts.debugging_opts.no_trans ||
201             !sess.opts.output_types.should_trans()) &&
202            crate_type == config::CrateTypeExecutable {
203             continue;
204         }
205
206         if invalid_output_for_target(sess, crate_type) {
207            bug!("invalid output type `{:?}` for target os `{}`",
208                 crate_type, sess.opts.target_triple);
209         }
210         let mut out_files = link_binary_output(sess, trans, crate_type, outputs, crate_name);
211         out_filenames.append(&mut out_files);
212     }
213
214     // Remove the temporary object file and metadata if we aren't saving temps
215     if !sess.opts.cg.save_temps {
216         if sess.opts.output_types.should_trans() {
217             for obj in object_filenames(trans, outputs) {
218                 remove(sess, &obj);
219             }
220         }
221         remove(sess, &outputs.with_extension(METADATA_OBJ_NAME));
222     }
223
224     out_filenames
225 }
226
227
228 /// Returns default crate type for target
229 ///
230 /// Default crate type is used when crate type isn't provided neither
231 /// through cmd line arguments nor through crate attributes
232 ///
233 /// It is CrateTypeExecutable for all platforms but iOS as there is no
234 /// way to run iOS binaries anyway without jailbreaking and
235 /// interaction with Rust code through static library is the only
236 /// option for now
237 pub fn default_output_for_target(sess: &Session) -> config::CrateType {
238     if !sess.target.target.options.executables {
239         config::CrateTypeStaticlib
240     } else {
241         config::CrateTypeExecutable
242     }
243 }
244
245 /// Checks if target supports crate_type as output
246 pub fn invalid_output_for_target(sess: &Session,
247                                  crate_type: config::CrateType) -> bool {
248     match (sess.target.target.options.dynamic_linking,
249            sess.target.target.options.executables, crate_type) {
250         (false, _, config::CrateTypeCdylib) |
251         (false, _, config::CrateTypeProcMacro) |
252         (false, _, config::CrateTypeDylib) => true,
253         (_, false, config::CrateTypeExecutable) => true,
254         _ => false
255     }
256 }
257
258 fn is_writeable(p: &Path) -> bool {
259     match p.metadata() {
260         Err(..) => true,
261         Ok(m) => !m.permissions().readonly()
262     }
263 }
264
265 fn filename_for_metadata(sess: &Session, crate_name: &str, outputs: &OutputFilenames) -> PathBuf {
266     let out_filename = outputs.single_output_file.clone()
267         .unwrap_or(outputs
268             .out_directory
269             .join(&format!("lib{}{}.rmeta", crate_name, sess.opts.cg.extra_filename)));
270     check_file_is_writeable(&out_filename, sess);
271     out_filename
272 }
273
274 pub fn filename_for_input(sess: &Session,
275                           crate_type: config::CrateType,
276                           crate_name: &str,
277                           outputs: &OutputFilenames) -> PathBuf {
278     let libname = format!("{}{}", crate_name, sess.opts.cg.extra_filename);
279
280     match crate_type {
281         config::CrateTypeRlib => {
282             outputs.out_directory.join(&format!("lib{}.rlib", libname))
283         }
284         config::CrateTypeCdylib |
285         config::CrateTypeProcMacro |
286         config::CrateTypeDylib => {
287             let (prefix, suffix) = (&sess.target.target.options.dll_prefix,
288                                     &sess.target.target.options.dll_suffix);
289             outputs.out_directory.join(&format!("{}{}{}", prefix, libname,
290                                                 suffix))
291         }
292         config::CrateTypeStaticlib => {
293             let (prefix, suffix) = (&sess.target.target.options.staticlib_prefix,
294                                     &sess.target.target.options.staticlib_suffix);
295             outputs.out_directory.join(&format!("{}{}{}", prefix, libname,
296                                                 suffix))
297         }
298         config::CrateTypeExecutable => {
299             let suffix = &sess.target.target.options.exe_suffix;
300             let out_filename = outputs.path(OutputType::Exe);
301             if suffix.is_empty() {
302                 out_filename.to_path_buf()
303             } else {
304                 out_filename.with_extension(&suffix[1..])
305             }
306         }
307     }
308 }
309
310 pub fn each_linked_rlib(sess: &Session,
311                         f: &mut FnMut(CrateNum, &Path)) {
312     let crates = sess.cstore.used_crates(LinkagePreference::RequireStatic).into_iter();
313     let fmts = sess.dependency_formats.borrow();
314     let fmts = fmts.get(&config::CrateTypeExecutable)
315                    .or_else(|| fmts.get(&config::CrateTypeStaticlib))
316                    .or_else(|| fmts.get(&config::CrateTypeCdylib))
317                    .or_else(|| fmts.get(&config::CrateTypeProcMacro));
318     let fmts = fmts.unwrap_or_else(|| {
319         bug!("could not find formats for rlibs");
320     });
321     for (cnum, path) in crates {
322         match fmts[cnum.as_usize() - 1] {
323             Linkage::NotLinked | Linkage::IncludedFromDylib => continue,
324             _ => {}
325         }
326         let name = sess.cstore.crate_name(cnum).clone();
327         let path = match path {
328             LibSource::Some(p) => p,
329             LibSource::MetadataOnly => {
330                 sess.fatal(&format!("could not find rlib for: `{}`, found rmeta (metadata) file",
331                                     name));
332             }
333             LibSource::None => {
334                 sess.fatal(&format!("could not find rlib for: `{}`", name));
335             }
336         };
337         f(cnum, &path);
338     }
339 }
340
341 fn out_filename(sess: &Session,
342                 crate_type: config::CrateType,
343                 outputs: &OutputFilenames,
344                 crate_name: &str)
345                 -> PathBuf {
346     let default_filename = filename_for_input(sess, crate_type, crate_name, outputs);
347     let out_filename = outputs.outputs.get(&OutputType::Exe)
348                               .and_then(|s| s.to_owned())
349                               .or_else(|| outputs.single_output_file.clone())
350                               .unwrap_or(default_filename);
351
352     check_file_is_writeable(&out_filename, sess);
353
354     out_filename
355 }
356
357 // Make sure files are writeable.  Mac, FreeBSD, and Windows system linkers
358 // check this already -- however, the Linux linker will happily overwrite a
359 // read-only file.  We should be consistent.
360 fn check_file_is_writeable(file: &Path, sess: &Session) {
361     if !is_writeable(file) {
362         sess.fatal(&format!("output file {} is not writeable -- check its \
363                             permissions", file.display()));
364     }
365 }
366
367 fn link_binary_output(sess: &Session,
368                       trans: &CrateTranslation,
369                       crate_type: config::CrateType,
370                       outputs: &OutputFilenames,
371                       crate_name: &str) -> Vec<PathBuf> {
372     let objects = object_filenames(trans, outputs);
373
374     for file in &objects {
375         check_file_is_writeable(file, sess);
376     }
377
378     let tmpdir = match TempDir::new("rustc") {
379         Ok(tmpdir) => tmpdir,
380         Err(err) => sess.fatal(&format!("couldn't create a temp dir: {}", err)),
381     };
382
383     let mut out_filenames = vec![];
384
385     if outputs.outputs.contains_key(&OutputType::Metadata) {
386         let out_filename = filename_for_metadata(sess, crate_name, outputs);
387         emit_metadata(sess, trans, &out_filename);
388         out_filenames.push(out_filename);
389     }
390
391     if outputs.outputs.should_trans() {
392         let out_filename = out_filename(sess, crate_type, outputs, crate_name);
393         match crate_type {
394             config::CrateTypeRlib => {
395                 link_rlib(sess, Some(trans), &objects, &out_filename,
396                           tmpdir.path()).build();
397             }
398             config::CrateTypeStaticlib => {
399                 link_staticlib(sess, &objects, &out_filename, tmpdir.path());
400             }
401             _ => {
402                 link_natively(sess, crate_type, &objects, &out_filename, trans,
403                               outputs, tmpdir.path());
404             }
405         }
406         out_filenames.push(out_filename);
407     }
408
409     out_filenames
410 }
411
412 fn object_filenames(trans: &CrateTranslation,
413                     outputs: &OutputFilenames)
414                     -> Vec<PathBuf> {
415     trans.modules.iter().map(|module| {
416         outputs.temp_path(OutputType::Object, Some(&module.name))
417     }).collect()
418 }
419
420 fn archive_search_paths(sess: &Session) -> Vec<PathBuf> {
421     let mut search = Vec::new();
422     sess.target_filesearch(PathKind::Native).for_each_lib_search_path(|path, _| {
423         search.push(path.to_path_buf());
424     });
425     return search;
426 }
427
428 fn archive_config<'a>(sess: &'a Session,
429                       output: &Path,
430                       input: Option<&Path>) -> ArchiveConfig<'a> {
431     ArchiveConfig {
432         sess: sess,
433         dst: output.to_path_buf(),
434         src: input.map(|p| p.to_path_buf()),
435         lib_search_paths: archive_search_paths(sess),
436         ar_prog: get_ar_prog(sess),
437         command_path: command_path(sess, None),
438     }
439 }
440
441 fn emit_metadata<'a>(sess: &'a Session, trans: &CrateTranslation, out_filename: &Path) {
442     let result = fs::File::create(out_filename).and_then(|mut f| {
443         f.write_all(&trans.metadata.raw_data)
444     });
445
446     if let Err(e) = result {
447         sess.fatal(&format!("failed to write {}: {}", out_filename.display(), e));
448     }
449 }
450
451 // Create an 'rlib'
452 //
453 // An rlib in its current incarnation is essentially a renamed .a file. The
454 // rlib primarily contains the object file of the crate, but it also contains
455 // all of the object files from native libraries. This is done by unzipping
456 // native libraries and inserting all of the contents into this archive.
457 fn link_rlib<'a>(sess: &'a Session,
458                  trans: Option<&CrateTranslation>, // None == no metadata/bytecode
459                  objects: &[PathBuf],
460                  out_filename: &Path,
461                  tmpdir: &Path) -> ArchiveBuilder<'a> {
462     info!("preparing rlib from {:?} to {:?}", objects, out_filename);
463     let mut ab = ArchiveBuilder::new(archive_config(sess, out_filename, None));
464
465     for obj in objects {
466         ab.add_file(obj);
467     }
468
469     // Note that in this loop we are ignoring the value of `lib.cfg`. That is,
470     // we may not be configured to actually include a static library if we're
471     // adding it here. That's because later when we consume this rlib we'll
472     // decide whether we actually needed the static library or not.
473     //
474     // To do this "correctly" we'd need to keep track of which libraries added
475     // which object files to the archive. We don't do that here, however. The
476     // #[link(cfg(..))] feature is unstable, though, and only intended to get
477     // liblibc working. In that sense the check below just indicates that if
478     // there are any libraries we want to omit object files for at link time we
479     // just exclude all custom object files.
480     //
481     // Eventually if we want to stabilize or flesh out the #[link(cfg(..))]
482     // feature then we'll need to figure out how to record what objects were
483     // loaded from the libraries found here and then encode that into the
484     // metadata of the rlib we're generating somehow.
485     for lib in sess.cstore.used_libraries() {
486         match lib.kind {
487             NativeLibraryKind::NativeStatic => {}
488             NativeLibraryKind::NativeStaticNobundle |
489             NativeLibraryKind::NativeFramework |
490             NativeLibraryKind::NativeUnknown => continue,
491         }
492         ab.add_native_library(&lib.name.as_str());
493     }
494
495     // After adding all files to the archive, we need to update the
496     // symbol table of the archive.
497     ab.update_symbols();
498
499     // Note that it is important that we add all of our non-object "magical
500     // files" *after* all of the object files in the archive. The reason for
501     // this is as follows:
502     //
503     // * When performing LTO, this archive will be modified to remove
504     //   objects from above. The reason for this is described below.
505     //
506     // * When the system linker looks at an archive, it will attempt to
507     //   determine the architecture of the archive in order to see whether its
508     //   linkable.
509     //
510     //   The algorithm for this detection is: iterate over the files in the
511     //   archive. Skip magical SYMDEF names. Interpret the first file as an
512     //   object file. Read architecture from the object file.
513     //
514     // * As one can probably see, if "metadata" and "foo.bc" were placed
515     //   before all of the objects, then the architecture of this archive would
516     //   not be correctly inferred once 'foo.o' is removed.
517     //
518     // Basically, all this means is that this code should not move above the
519     // code above.
520     match trans {
521         Some(trans) => {
522             // Instead of putting the metadata in an object file section, rlibs
523             // contain the metadata in a separate file. We use a temp directory
524             // here so concurrent builds in the same directory don't try to use
525             // the same filename for metadata (stomping over one another)
526             let metadata = tmpdir.join(sess.cstore.metadata_filename());
527             emit_metadata(sess, trans, &metadata);
528             ab.add_file(&metadata);
529
530             // For LTO purposes, the bytecode of this library is also inserted
531             // into the archive.  If codegen_units > 1, we insert each of the
532             // bitcode files.
533             for obj in objects {
534                 // Note that we make sure that the bytecode filename in the
535                 // archive is never exactly 16 bytes long by adding a 16 byte
536                 // extension to it. This is to work around a bug in LLDB that
537                 // would cause it to crash if the name of a file in an archive
538                 // was exactly 16 bytes.
539                 let bc_filename = obj.with_extension("bc");
540                 let bc_deflated_filename = tmpdir.join({
541                     obj.with_extension("bytecode.deflate").file_name().unwrap()
542                 });
543
544                 let mut bc_data = Vec::new();
545                 match fs::File::open(&bc_filename).and_then(|mut f| {
546                     f.read_to_end(&mut bc_data)
547                 }) {
548                     Ok(..) => {}
549                     Err(e) => sess.fatal(&format!("failed to read bytecode: {}",
550                                                  e))
551                 }
552
553                 let bc_data_deflated = flate::deflate_bytes(&bc_data);
554
555                 let mut bc_file_deflated = match fs::File::create(&bc_deflated_filename) {
556                     Ok(file) => file,
557                     Err(e) => {
558                         sess.fatal(&format!("failed to create compressed \
559                                              bytecode file: {}", e))
560                     }
561                 };
562
563                 match write_rlib_bytecode_object_v1(&mut bc_file_deflated,
564                                                     &bc_data_deflated) {
565                     Ok(()) => {}
566                     Err(e) => {
567                         sess.fatal(&format!("failed to write compressed \
568                                              bytecode: {}", e));
569                     }
570                 };
571
572                 ab.add_file(&bc_deflated_filename);
573
574                 // See the bottom of back::write::run_passes for an explanation
575                 // of when we do and don't keep .#module-name#.bc files around.
576                 let user_wants_numbered_bitcode =
577                         sess.opts.output_types.contains_key(&OutputType::Bitcode) &&
578                         sess.opts.cg.codegen_units > 1;
579                 if !sess.opts.cg.save_temps && !user_wants_numbered_bitcode {
580                     remove(sess, &bc_filename);
581                 }
582             }
583
584             // After adding all files to the archive, we need to update the
585             // symbol table of the archive. This currently dies on macOS (see
586             // #11162), and isn't necessary there anyway
587             if !sess.target.target.options.is_like_osx {
588                 ab.update_symbols();
589             }
590         }
591
592         None => {}
593     }
594
595     ab
596 }
597
598 fn write_rlib_bytecode_object_v1(writer: &mut Write,
599                                  bc_data_deflated: &[u8]) -> io::Result<()> {
600     let bc_data_deflated_size: u64 = bc_data_deflated.len() as u64;
601
602     writer.write_all(RLIB_BYTECODE_OBJECT_MAGIC)?;
603     writer.write_all(&[1, 0, 0, 0])?;
604     writer.write_all(&[
605         (bc_data_deflated_size >>  0) as u8,
606         (bc_data_deflated_size >>  8) as u8,
607         (bc_data_deflated_size >> 16) as u8,
608         (bc_data_deflated_size >> 24) as u8,
609         (bc_data_deflated_size >> 32) as u8,
610         (bc_data_deflated_size >> 40) as u8,
611         (bc_data_deflated_size >> 48) as u8,
612         (bc_data_deflated_size >> 56) as u8,
613     ])?;
614     writer.write_all(&bc_data_deflated)?;
615
616     let number_of_bytes_written_so_far =
617         RLIB_BYTECODE_OBJECT_MAGIC.len() +                // magic id
618         mem::size_of_val(&RLIB_BYTECODE_OBJECT_VERSION) + // version
619         mem::size_of_val(&bc_data_deflated_size) +        // data size field
620         bc_data_deflated_size as usize;                    // actual data
621
622     // If the number of bytes written to the object so far is odd, add a
623     // padding byte to make it even. This works around a crash bug in LLDB
624     // (see issue #15950)
625     if number_of_bytes_written_so_far % 2 == 1 {
626         writer.write_all(&[0])?;
627     }
628
629     return Ok(());
630 }
631
632 // Create a static archive
633 //
634 // This is essentially the same thing as an rlib, but it also involves adding
635 // all of the upstream crates' objects into the archive. This will slurp in
636 // all of the native libraries of upstream dependencies as well.
637 //
638 // Additionally, there's no way for us to link dynamic libraries, so we warn
639 // about all dynamic library dependencies that they're not linked in.
640 //
641 // There's no need to include metadata in a static archive, so ensure to not
642 // link in the metadata object file (and also don't prepare the archive with a
643 // metadata file).
644 fn link_staticlib(sess: &Session, objects: &[PathBuf], out_filename: &Path,
645                   tempdir: &Path) {
646     let mut ab = link_rlib(sess, None, objects, out_filename, tempdir);
647     let mut all_native_libs = vec![];
648
649     each_linked_rlib(sess, &mut |cnum, path| {
650         let name = sess.cstore.crate_name(cnum);
651         let native_libs = sess.cstore.native_libraries(cnum);
652
653         // Here when we include the rlib into our staticlib we need to make a
654         // decision whether to include the extra object files along the way.
655         // These extra object files come from statically included native
656         // libraries, but they may be cfg'd away with #[link(cfg(..))].
657         //
658         // This unstable feature, though, only needs liblibc to work. The only
659         // use case there is where musl is statically included in liblibc.rlib,
660         // so if we don't want the included version we just need to skip it. As
661         // a result the logic here is that if *any* linked library is cfg'd away
662         // we just skip all object files.
663         //
664         // Clearly this is not sufficient for a general purpose feature, and
665         // we'd want to read from the library's metadata to determine which
666         // object files come from where and selectively skip them.
667         let skip_object_files = native_libs.iter().any(|lib| {
668             lib.kind == NativeLibraryKind::NativeStatic && !relevant_lib(sess, lib)
669         });
670         ab.add_rlib(path, &name.as_str(), sess.lto(), skip_object_files).unwrap();
671
672         all_native_libs.extend(sess.cstore.native_libraries(cnum));
673     });
674
675     ab.update_symbols();
676     ab.build();
677
678     if !all_native_libs.is_empty() {
679         sess.note_without_error("link against the following native artifacts when linking against \
680                                  this static library");
681         sess.note_without_error("the order and any duplication can be significant on some \
682                                  platforms, and so may need to be preserved");
683     }
684
685     for lib in all_native_libs.iter().filter(|l| relevant_lib(sess, l)) {
686         let name = match lib.kind {
687             NativeLibraryKind::NativeStaticNobundle |
688             NativeLibraryKind::NativeUnknown => "library",
689             NativeLibraryKind::NativeFramework => "framework",
690             // These are included, no need to print them
691             NativeLibraryKind::NativeStatic => continue,
692         };
693         sess.note_without_error(&format!("{}: {}", name, lib.name));
694     }
695 }
696
697 // Create a dynamic library or executable
698 //
699 // This will invoke the system linker/cc to create the resulting file. This
700 // links to all upstream files as well.
701 fn link_natively(sess: &Session,
702                  crate_type: config::CrateType,
703                  objects: &[PathBuf],
704                  out_filename: &Path,
705                  trans: &CrateTranslation,
706                  outputs: &OutputFilenames,
707                  tmpdir: &Path) {
708     info!("preparing {:?} from {:?} to {:?}", crate_type, objects, out_filename);
709     let flavor = sess.linker_flavor();
710
711     // The invocations of cc share some flags across platforms
712     let (pname, mut cmd, extra) = get_linker(sess);
713     cmd.env("PATH", command_path(sess, extra));
714
715     let root = sess.target_filesearch(PathKind::Native).get_lib_path();
716     if let Some(args) = sess.target.target.options.pre_link_args.get(&flavor) {
717         cmd.args(args);
718     }
719
720     let pre_link_objects = if crate_type == config::CrateTypeExecutable {
721         &sess.target.target.options.pre_link_objects_exe
722     } else {
723         &sess.target.target.options.pre_link_objects_dll
724     };
725     for obj in pre_link_objects {
726         cmd.arg(root.join(obj));
727     }
728
729     if sess.target.target.options.is_like_emscripten {
730         cmd.arg("-s");
731         cmd.arg(if sess.panic_strategy() == PanicStrategy::Abort {
732             "DISABLE_EXCEPTION_CATCHING=1"
733         } else {
734             "DISABLE_EXCEPTION_CATCHING=0"
735         });
736     }
737
738     {
739         let mut linker = trans.linker_info.to_linker(cmd, &sess);
740         link_args(&mut *linker, sess, crate_type, tmpdir,
741                   objects, out_filename, outputs, trans);
742         cmd = linker.finalize();
743     }
744     if let Some(args) = sess.target.target.options.late_link_args.get(&flavor) {
745         cmd.args(args);
746     }
747     for obj in &sess.target.target.options.post_link_objects {
748         cmd.arg(root.join(obj));
749     }
750     if let Some(args) = sess.target.target.options.post_link_args.get(&flavor) {
751         cmd.args(args);
752     }
753
754     if sess.opts.debugging_opts.print_link_args {
755         println!("{:?}", &cmd);
756     }
757
758     // May have not found libraries in the right formats.
759     sess.abort_if_errors();
760
761     // Invoke the system linker
762     //
763     // Note that there's a terribly awful hack that really shouldn't be present
764     // in any compiler. Here an environment variable is supported to
765     // automatically retry the linker invocation if the linker looks like it
766     // segfaulted.
767     //
768     // Gee that seems odd, normally segfaults are things we want to know about!
769     // Unfortunately though in rust-lang/rust#38878 we're experiencing the
770     // linker segfaulting on Travis quite a bit which is causing quite a bit of
771     // pain to land PRs when they spuriously fail due to a segfault.
772     //
773     // The issue #38878 has some more debugging information on it as well, but
774     // this unfortunately looks like it's just a race condition in macOS's linker
775     // with some thread pool working in the background. It seems that no one
776     // currently knows a fix for this so in the meantime we're left with this...
777     info!("{:?}", &cmd);
778     let retry_on_segfault = env::var("RUSTC_RETRY_LINKER_ON_SEGFAULT").is_ok();
779     let mut prog;
780     let mut i = 0;
781     loop {
782         i += 1;
783         prog = time(sess.time_passes(), "running linker", || cmd.output());
784         if !retry_on_segfault || i > 3 {
785             break
786         }
787         let output = match prog {
788             Ok(ref output) => output,
789             Err(_) => break,
790         };
791         if output.status.success() {
792             break
793         }
794         let mut out = output.stderr.clone();
795         out.extend(&output.stdout);
796         let out = String::from_utf8_lossy(&out);
797         let msg = "clang: error: unable to execute command: \
798                    Segmentation fault: 11";
799         if !out.contains(msg) {
800             break
801         }
802
803         sess.struct_warn("looks like the linker segfaulted when we tried to \
804                           call it, automatically retrying again")
805             .note(&format!("{:?}", cmd))
806             .note(&out)
807             .emit();
808     }
809
810     match prog {
811         Ok(prog) => {
812             fn escape_string(s: &[u8]) -> String {
813                 str::from_utf8(s).map(|s| s.to_owned())
814                     .unwrap_or_else(|_| {
815                         let mut x = "Non-UTF-8 output: ".to_string();
816                         x.extend(s.iter()
817                                  .flat_map(|&b| ascii::escape_default(b))
818                                  .map(|b| char::from_u32(b as u32).unwrap()));
819                         x
820                     })
821             }
822             if !prog.status.success() {
823                 let mut output = prog.stderr.clone();
824                 output.extend_from_slice(&prog.stdout);
825                 sess.struct_err(&format!("linking with `{}` failed: {}",
826                                          pname,
827                                          prog.status))
828                     .note(&format!("{:?}", &cmd))
829                     .note(&escape_string(&output))
830                     .emit();
831                 sess.abort_if_errors();
832             }
833             info!("linker stderr:\n{}", escape_string(&prog.stderr));
834             info!("linker stdout:\n{}", escape_string(&prog.stdout));
835         },
836         Err(e) => {
837             sess.struct_err(&format!("could not exec the linker `{}`: {}", pname, e))
838                 .note(&format!("{:?}", &cmd))
839                 .emit();
840             if sess.target.target.options.is_like_msvc && e.kind() == io::ErrorKind::NotFound {
841                 sess.note_without_error("the msvc targets depend on the msvc linker \
842                     but `link.exe` was not found");
843                 sess.note_without_error("please ensure that VS 2013 or VS 2015 was installed \
844                     with the Visual C++ option");
845             }
846             sess.abort_if_errors();
847         }
848     }
849
850
851     // On macOS, debuggers need this utility to get run to do some munging of
852     // the symbols
853     if sess.target.target.options.is_like_osx && sess.opts.debuginfo != NoDebugInfo {
854         match Command::new("dsymutil").arg(out_filename).output() {
855             Ok(..) => {}
856             Err(e) => sess.fatal(&format!("failed to run dsymutil: {}", e)),
857         }
858     }
859 }
860
861 fn link_args(cmd: &mut Linker,
862              sess: &Session,
863              crate_type: config::CrateType,
864              tmpdir: &Path,
865              objects: &[PathBuf],
866              out_filename: &Path,
867              outputs: &OutputFilenames,
868              trans: &CrateTranslation) {
869
870     // The default library location, we need this to find the runtime.
871     // The location of crates will be determined as needed.
872     let lib_path = sess.target_filesearch(PathKind::All).get_lib_path();
873
874     // target descriptor
875     let t = &sess.target.target;
876
877     cmd.include_path(&fix_windows_verbatim_for_gcc(&lib_path));
878     for obj in objects {
879         cmd.add_object(obj);
880     }
881     cmd.output_filename(out_filename);
882
883     if crate_type == config::CrateTypeExecutable &&
884        sess.target.target.options.is_like_windows {
885         if let Some(ref s) = trans.windows_subsystem {
886             cmd.subsystem(s);
887         }
888     }
889
890     // If we're building a dynamic library then some platforms need to make sure
891     // that all symbols are exported correctly from the dynamic library.
892     if crate_type != config::CrateTypeExecutable ||
893        sess.target.target.options.is_like_emscripten {
894         cmd.export_symbols(tmpdir, crate_type);
895     }
896
897     // When linking a dynamic library, we put the metadata into a section of the
898     // executable. This metadata is in a separate object file from the main
899     // object file, so we link that in here.
900     if crate_type == config::CrateTypeDylib ||
901        crate_type == config::CrateTypeProcMacro {
902         cmd.add_object(&outputs.with_extension(METADATA_OBJ_NAME));
903     }
904
905     // Try to strip as much out of the generated object by removing unused
906     // sections if possible. See more comments in linker.rs
907     if !sess.opts.cg.link_dead_code {
908         let keep_metadata = crate_type == config::CrateTypeDylib;
909         cmd.gc_sections(keep_metadata);
910     }
911
912     let used_link_args = sess.cstore.used_link_args();
913
914     if crate_type == config::CrateTypeExecutable &&
915        t.options.position_independent_executables {
916         let empty_vec = Vec::new();
917         let args = sess.opts.cg.link_args.as_ref().unwrap_or(&empty_vec);
918         let more_args = &sess.opts.cg.link_arg;
919         let mut args = args.iter().chain(more_args.iter()).chain(used_link_args.iter());
920
921         if get_reloc_model(sess) == llvm::RelocMode::PIC
922             && !args.any(|x| *x == "-static") {
923             cmd.position_independent_executable();
924         }
925     }
926
927     // Pass optimization flags down to the linker.
928     cmd.optimize();
929
930     // Pass debuginfo flags down to the linker.
931     cmd.debuginfo();
932
933     // We want to prevent the compiler from accidentally leaking in any system
934     // libraries, so we explicitly ask gcc to not link to any libraries by
935     // default. Note that this does not happen for windows because windows pulls
936     // in some large number of libraries and I couldn't quite figure out which
937     // subset we wanted.
938     if t.options.no_default_libraries {
939         cmd.no_default_libraries();
940     }
941
942     // Take careful note of the ordering of the arguments we pass to the linker
943     // here. Linkers will assume that things on the left depend on things to the
944     // right. Things on the right cannot depend on things on the left. This is
945     // all formally implemented in terms of resolving symbols (libs on the right
946     // resolve unknown symbols of libs on the left, but not vice versa).
947     //
948     // For this reason, we have organized the arguments we pass to the linker as
949     // such:
950     //
951     //  1. The local object that LLVM just generated
952     //  2. Local native libraries
953     //  3. Upstream rust libraries
954     //  4. Upstream native libraries
955     //
956     // The rationale behind this ordering is that those items lower down in the
957     // list can't depend on items higher up in the list. For example nothing can
958     // depend on what we just generated (e.g. that'd be a circular dependency).
959     // Upstream rust libraries are not allowed to depend on our local native
960     // libraries as that would violate the structure of the DAG, in that
961     // scenario they are required to link to them as well in a shared fashion.
962     //
963     // Note that upstream rust libraries may contain native dependencies as
964     // well, but they also can't depend on what we just started to add to the
965     // link line. And finally upstream native libraries can't depend on anything
966     // in this DAG so far because they're only dylibs and dylibs can only depend
967     // on other dylibs (e.g. other native deps).
968     add_local_native_libraries(cmd, sess);
969     add_upstream_rust_crates(cmd, sess, crate_type, tmpdir);
970     add_upstream_native_libraries(cmd, sess, crate_type);
971
972     // # Telling the linker what we're doing
973
974     if crate_type != config::CrateTypeExecutable {
975         cmd.build_dylib(out_filename);
976     }
977
978     // FIXME (#2397): At some point we want to rpath our guesses as to
979     // where extern libraries might live, based on the
980     // addl_lib_search_paths
981     if sess.opts.cg.rpath {
982         let sysroot = sess.sysroot();
983         let target_triple = &sess.opts.target_triple;
984         let mut get_install_prefix_lib_path = || {
985             let install_prefix = option_env!("CFG_PREFIX").expect("CFG_PREFIX");
986             let tlib = filesearch::relative_target_lib_path(sysroot, target_triple);
987             let mut path = PathBuf::from(install_prefix);
988             path.push(&tlib);
989
990             path
991         };
992         let mut rpath_config = RPathConfig {
993             used_crates: sess.cstore.used_crates(LinkagePreference::RequireDynamic),
994             out_filename: out_filename.to_path_buf(),
995             has_rpath: sess.target.target.options.has_rpath,
996             is_like_osx: sess.target.target.options.is_like_osx,
997             linker_is_gnu: sess.target.target.options.linker_is_gnu,
998             get_install_prefix_lib_path: &mut get_install_prefix_lib_path,
999         };
1000         cmd.args(&rpath::get_rpath_flags(&mut rpath_config));
1001     }
1002
1003     // Finally add all the linker arguments provided on the command line along
1004     // with any #[link_args] attributes found inside the crate
1005     if let Some(ref args) = sess.opts.cg.link_args {
1006         cmd.args(args);
1007     }
1008     cmd.args(&sess.opts.cg.link_arg);
1009     cmd.args(&used_link_args);
1010 }
1011
1012 // # Native library linking
1013 //
1014 // User-supplied library search paths (-L on the command line). These are
1015 // the same paths used to find Rust crates, so some of them may have been
1016 // added already by the previous crate linking code. This only allows them
1017 // to be found at compile time so it is still entirely up to outside
1018 // forces to make sure that library can be found at runtime.
1019 //
1020 // Also note that the native libraries linked here are only the ones located
1021 // in the current crate. Upstream crates with native library dependencies
1022 // may have their native library pulled in above.
1023 fn add_local_native_libraries(cmd: &mut Linker, sess: &Session) {
1024     sess.target_filesearch(PathKind::All).for_each_lib_search_path(|path, k| {
1025         match k {
1026             PathKind::Framework => { cmd.framework_path(path); }
1027             _ => { cmd.include_path(&fix_windows_verbatim_for_gcc(path)); }
1028         }
1029     });
1030
1031     let relevant_libs = sess.cstore.used_libraries().into_iter().filter(|l| {
1032         relevant_lib(sess, l)
1033     });
1034
1035     let search_path = archive_search_paths(sess);
1036     for lib in relevant_libs {
1037         match lib.kind {
1038             NativeLibraryKind::NativeUnknown => cmd.link_dylib(&lib.name.as_str()),
1039             NativeLibraryKind::NativeFramework => cmd.link_framework(&lib.name.as_str()),
1040             NativeLibraryKind::NativeStaticNobundle => cmd.link_staticlib(&lib.name.as_str()),
1041             NativeLibraryKind::NativeStatic => cmd.link_whole_staticlib(&lib.name.as_str(),
1042                                                                         &search_path)
1043         }
1044     }
1045 }
1046
1047 // # Rust Crate linking
1048 //
1049 // Rust crates are not considered at all when creating an rlib output. All
1050 // dependencies will be linked when producing the final output (instead of
1051 // the intermediate rlib version)
1052 fn add_upstream_rust_crates(cmd: &mut Linker,
1053                             sess: &Session,
1054                             crate_type: config::CrateType,
1055                             tmpdir: &Path) {
1056     // All of the heavy lifting has previously been accomplished by the
1057     // dependency_format module of the compiler. This is just crawling the
1058     // output of that module, adding crates as necessary.
1059     //
1060     // Linking to a rlib involves just passing it to the linker (the linker
1061     // will slurp up the object files inside), and linking to a dynamic library
1062     // involves just passing the right -l flag.
1063
1064     let formats = sess.dependency_formats.borrow();
1065     let data = formats.get(&crate_type).unwrap();
1066
1067     // Invoke get_used_crates to ensure that we get a topological sorting of
1068     // crates.
1069     let deps = sess.cstore.used_crates(LinkagePreference::RequireDynamic);
1070
1071     let mut compiler_builtins = None;
1072
1073     for &(cnum, _) in &deps {
1074         // We may not pass all crates through to the linker. Some crates may
1075         // appear statically in an existing dylib, meaning we'll pick up all the
1076         // symbols from the dylib.
1077         let src = sess.cstore.used_crate_source(cnum);
1078         match data[cnum.as_usize() - 1] {
1079             _ if sess.cstore.is_sanitizer_runtime(cnum) => {
1080                 link_sanitizer_runtime(cmd, sess, tmpdir, cnum);
1081             }
1082             // compiler-builtins are always placed last to ensure that they're
1083             // linked correctly.
1084             _ if sess.cstore.is_compiler_builtins(cnum) => {
1085                 assert!(compiler_builtins.is_none());
1086                 compiler_builtins = Some(cnum);
1087             }
1088             Linkage::NotLinked |
1089             Linkage::IncludedFromDylib => {}
1090             Linkage::Static => {
1091                 add_static_crate(cmd, sess, tmpdir, crate_type, cnum);
1092             }
1093             Linkage::Dynamic => {
1094                 add_dynamic_crate(cmd, sess, &src.dylib.unwrap().0)
1095             }
1096         }
1097     }
1098
1099     // compiler-builtins are always placed last to ensure that they're
1100     // linked correctly.
1101     // We must always link the `compiler_builtins` crate statically. Even if it
1102     // was already "included" in a dylib (e.g. `libstd` when `-C prefer-dynamic`
1103     // is used)
1104     if let Some(cnum) = compiler_builtins {
1105         add_static_crate(cmd, sess, tmpdir, crate_type, cnum);
1106     }
1107
1108     // Converts a library file-stem into a cc -l argument
1109     fn unlib<'a>(config: &config::Config, stem: &'a str) -> &'a str {
1110         if stem.starts_with("lib") && !config.target.options.is_like_windows {
1111             &stem[3..]
1112         } else {
1113             stem
1114         }
1115     }
1116
1117     // We must link the sanitizer runtime using -Wl,--whole-archive but since
1118     // it's packed in a .rlib, it contains stuff that are not objects that will
1119     // make the linker error. So we must remove those bits from the .rlib before
1120     // linking it.
1121     fn link_sanitizer_runtime(cmd: &mut Linker,
1122                               sess: &Session,
1123                               tmpdir: &Path,
1124                               cnum: CrateNum) {
1125         let src = sess.cstore.used_crate_source(cnum);
1126         let cratepath = &src.rlib.unwrap().0;
1127         let dst = tmpdir.join(cratepath.file_name().unwrap());
1128         let cfg = archive_config(sess, &dst, Some(cratepath));
1129         let mut archive = ArchiveBuilder::new(cfg);
1130         archive.update_symbols();
1131
1132         for f in archive.src_files() {
1133             if f.ends_with("bytecode.deflate") ||
1134                 f == sess.cstore.metadata_filename() {
1135                     archive.remove_file(&f);
1136                     continue
1137                 }
1138         }
1139
1140         archive.build();
1141
1142         cmd.link_whole_rlib(&dst);
1143     }
1144
1145     // Adds the static "rlib" versions of all crates to the command line.
1146     // There's a bit of magic which happens here specifically related to LTO and
1147     // dynamic libraries. Specifically:
1148     //
1149     // * For LTO, we remove upstream object files.
1150     // * For dylibs we remove metadata and bytecode from upstream rlibs
1151     //
1152     // When performing LTO, almost(*) all of the bytecode from the upstream
1153     // libraries has already been included in our object file output. As a
1154     // result we need to remove the object files in the upstream libraries so
1155     // the linker doesn't try to include them twice (or whine about duplicate
1156     // symbols). We must continue to include the rest of the rlib, however, as
1157     // it may contain static native libraries which must be linked in.
1158     //
1159     // (*) Crates marked with `#![no_builtins]` don't participate in LTO and
1160     // their bytecode wasn't included. The object files in those libraries must
1161     // still be passed to the linker.
1162     //
1163     // When making a dynamic library, linkers by default don't include any
1164     // object files in an archive if they're not necessary to resolve the link.
1165     // We basically want to convert the archive (rlib) to a dylib, though, so we
1166     // *do* want everything included in the output, regardless of whether the
1167     // linker thinks it's needed or not. As a result we must use the
1168     // --whole-archive option (or the platform equivalent). When using this
1169     // option the linker will fail if there are non-objects in the archive (such
1170     // as our own metadata and/or bytecode). All in all, for rlibs to be
1171     // entirely included in dylibs, we need to remove all non-object files.
1172     //
1173     // Note, however, that if we're not doing LTO or we're not producing a dylib
1174     // (aka we're making an executable), we can just pass the rlib blindly to
1175     // the linker (fast) because it's fine if it's not actually included as
1176     // we're at the end of the dependency chain.
1177     fn add_static_crate(cmd: &mut Linker,
1178                         sess: &Session,
1179                         tmpdir: &Path,
1180                         crate_type: config::CrateType,
1181                         cnum: CrateNum) {
1182         let src = sess.cstore.used_crate_source(cnum);
1183         let cratepath = &src.rlib.unwrap().0;
1184
1185         // See the comment above in `link_staticlib` and `link_rlib` for why if
1186         // there's a static library that's not relevant we skip all object
1187         // files.
1188         let native_libs = sess.cstore.native_libraries(cnum);
1189         let skip_native = native_libs.iter().any(|lib| {
1190             lib.kind == NativeLibraryKind::NativeStatic && !relevant_lib(sess, lib)
1191         });
1192
1193         if !sess.lto() && crate_type != config::CrateTypeDylib && !skip_native {
1194             cmd.link_rlib(&fix_windows_verbatim_for_gcc(cratepath));
1195             return
1196         }
1197
1198         let dst = tmpdir.join(cratepath.file_name().unwrap());
1199         let name = cratepath.file_name().unwrap().to_str().unwrap();
1200         let name = &name[3..name.len() - 5]; // chop off lib/.rlib
1201
1202         time(sess.time_passes(), &format!("altering {}.rlib", name), || {
1203             let cfg = archive_config(sess, &dst, Some(cratepath));
1204             let mut archive = ArchiveBuilder::new(cfg);
1205             archive.update_symbols();
1206
1207             let mut any_objects = false;
1208             for f in archive.src_files() {
1209                 if f.ends_with("bytecode.deflate") ||
1210                    f == sess.cstore.metadata_filename() {
1211                     archive.remove_file(&f);
1212                     continue
1213                 }
1214
1215                 let canonical = f.replace("-", "_");
1216                 let canonical_name = name.replace("-", "_");
1217
1218                 let is_rust_object =
1219                     canonical.starts_with(&canonical_name) && {
1220                         let num = &f[name.len()..f.len() - 2];
1221                         num.len() > 0 && num[1..].parse::<u32>().is_ok()
1222                     };
1223
1224                 // If we've been requested to skip all native object files
1225                 // (those not generated by the rust compiler) then we can skip
1226                 // this file. See above for why we may want to do this.
1227                 let skip_because_cfg_say_so = skip_native && !is_rust_object;
1228
1229                 // If we're performing LTO and this is a rust-generated object
1230                 // file, then we don't need the object file as it's part of the
1231                 // LTO module. Note that `#![no_builtins]` is excluded from LTO,
1232                 // though, so we let that object file slide.
1233                 let skip_because_lto = sess.lto() && is_rust_object &&
1234                                         !sess.cstore.is_no_builtins(cnum);
1235
1236                 if skip_because_cfg_say_so || skip_because_lto {
1237                     archive.remove_file(&f);
1238                 } else {
1239                     any_objects = true;
1240                 }
1241             }
1242
1243             if !any_objects {
1244                 return
1245             }
1246             archive.build();
1247
1248             // If we're creating a dylib, then we need to include the
1249             // whole of each object in our archive into that artifact. This is
1250             // because a `dylib` can be reused as an intermediate artifact.
1251             //
1252             // Note, though, that we don't want to include the whole of a
1253             // compiler-builtins crate (e.g. compiler-rt) because it'll get
1254             // repeatedly linked anyway.
1255             if crate_type == config::CrateTypeDylib &&
1256                !sess.cstore.is_compiler_builtins(cnum) {
1257                 cmd.link_whole_rlib(&fix_windows_verbatim_for_gcc(&dst));
1258             } else {
1259                 cmd.link_rlib(&fix_windows_verbatim_for_gcc(&dst));
1260             }
1261         });
1262     }
1263
1264     // Same thing as above, but for dynamic crates instead of static crates.
1265     fn add_dynamic_crate(cmd: &mut Linker, sess: &Session, cratepath: &Path) {
1266         // If we're performing LTO, then it should have been previously required
1267         // that all upstream rust dependencies were available in an rlib format.
1268         assert!(!sess.lto());
1269
1270         // Just need to tell the linker about where the library lives and
1271         // what its name is
1272         let parent = cratepath.parent();
1273         if let Some(dir) = parent {
1274             cmd.include_path(&fix_windows_verbatim_for_gcc(dir));
1275         }
1276         let filestem = cratepath.file_stem().unwrap().to_str().unwrap();
1277         cmd.link_rust_dylib(&unlib(&sess.target, filestem),
1278                             parent.unwrap_or(Path::new("")));
1279     }
1280 }
1281
1282 // Link in all of our upstream crates' native dependencies. Remember that
1283 // all of these upstream native dependencies are all non-static
1284 // dependencies. We've got two cases then:
1285 //
1286 // 1. The upstream crate is an rlib. In this case we *must* link in the
1287 // native dependency because the rlib is just an archive.
1288 //
1289 // 2. The upstream crate is a dylib. In order to use the dylib, we have to
1290 // have the dependency present on the system somewhere. Thus, we don't
1291 // gain a whole lot from not linking in the dynamic dependency to this
1292 // crate as well.
1293 //
1294 // The use case for this is a little subtle. In theory the native
1295 // dependencies of a crate are purely an implementation detail of the crate
1296 // itself, but the problem arises with generic and inlined functions. If a
1297 // generic function calls a native function, then the generic function must
1298 // be instantiated in the target crate, meaning that the native symbol must
1299 // also be resolved in the target crate.
1300 fn add_upstream_native_libraries(cmd: &mut Linker, sess: &Session, crate_type: config::CrateType) {
1301     // Be sure to use a topological sorting of crates because there may be
1302     // interdependencies between native libraries. When passing -nodefaultlibs,
1303     // for example, almost all native libraries depend on libc, so we have to
1304     // make sure that's all the way at the right (liblibc is near the base of
1305     // the dependency chain).
1306     //
1307     // This passes RequireStatic, but the actual requirement doesn't matter,
1308     // we're just getting an ordering of crate numbers, we're not worried about
1309     // the paths.
1310     let formats = sess.dependency_formats.borrow();
1311     let data = formats.get(&crate_type).unwrap();
1312
1313     let crates = sess.cstore.used_crates(LinkagePreference::RequireStatic);
1314     for (cnum, _) in crates {
1315         for lib in sess.cstore.native_libraries(cnum) {
1316             if !relevant_lib(sess, &lib) {
1317                 continue
1318             }
1319             match lib.kind {
1320                 NativeLibraryKind::NativeUnknown => cmd.link_dylib(&lib.name.as_str()),
1321                 NativeLibraryKind::NativeFramework => cmd.link_framework(&lib.name.as_str()),
1322                 NativeLibraryKind::NativeStaticNobundle => {
1323                     // Link "static-nobundle" native libs only if the crate they originate from
1324                     // is being linked statically to the current crate.  If it's linked dynamically
1325                     // or is an rlib already included via some other dylib crate, the symbols from
1326                     // native libs will have already been included in that dylib.
1327                     if data[cnum.as_usize() - 1] == Linkage::Static {
1328                         cmd.link_staticlib(&lib.name.as_str())
1329                     }
1330                 },
1331                 // ignore statically included native libraries here as we've
1332                 // already included them when we included the rust library
1333                 // previously
1334                 NativeLibraryKind::NativeStatic => {}
1335             }
1336         }
1337     }
1338 }
1339
1340 fn relevant_lib(sess: &Session, lib: &NativeLibrary) -> bool {
1341     match lib.cfg {
1342         Some(ref cfg) => attr::cfg_matches(cfg, &sess.parse_sess, None),
1343         None => true,
1344     }
1345 }