]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/redox_base.rs
Rollup merge of #59880 - solson:transmute-float, r=alexcrichton
[rust.git] / src / librustc_target / spec / redox_base.rs
1 use crate::spec::{LinkArgs, LinkerFlavor, TargetOptions};
2 use std::default::Default;
3
4 pub fn opts() -> TargetOptions {
5     let mut args = LinkArgs::new();
6     args.insert(LinkerFlavor::Gcc, vec![
7         // We want to be able to strip as much executable code as possible
8         // from the linker command line, and this flag indicates to the
9         // linker that it can avoid linking in dynamic libraries that don't
10         // actually satisfy any symbols up to that point (as with many other
11         // resolutions the linker does). This option only applies to all
12         // following libraries so we're sure to pass it as one of the first
13         // arguments.
14         "-Wl,--as-needed".to_string(),
15
16         // Always enable NX protection when it is available
17         "-Wl,-z,noexecstack".to_string()
18     ]);
19
20     TargetOptions {
21         pre_link_args: args,
22         executables: true,
23         relocation_model: "static".to_string(),
24         disable_redzone: true,
25         eliminate_frame_pointer: false,
26         target_family: None,
27         linker_is_gnu: true,
28         has_elf_tls: true,
29         .. Default::default()
30     }
31 }