]> git.proxmox.com Git - rustc.git/blame - src/librustc_back/target/freebsd_base.rs
New upstream version 1.18.0+dfsg1
[rustc.git] / src / librustc_back / target / freebsd_base.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 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
cc61c64b
XL
11use LinkerFlavor;
12use target::{LinkArgs, TargetOptions};
1a4d82fc
JJ
13use std::default::Default;
14
15pub fn opts() -> TargetOptions {
cc61c64b
XL
16 let mut args = LinkArgs::new();
17 args.insert(LinkerFlavor::Gcc, vec![
18 // GNU-style linkers will use this to omit linking to libraries
19 // which don't actually fulfill any relocations, but only for
20 // libraries which follow this flag. Thus, use it before
21 // specifying libraries to link to.
22 "-Wl,--as-needed".to_string(),
23
24 // Always enable NX protection when it is available
25 "-Wl,-z,noexecstack".to_string(),
26 ]);
27
1a4d82fc 28 TargetOptions {
1a4d82fc
JJ
29 dynamic_linking: true,
30 executables: true,
32a655c1 31 target_family: Some("unix".to_string()),
7453a54e 32 linker_is_gnu: true,
1a4d82fc 33 has_rpath: true,
cc61c64b 34 pre_link_args: args,
7453a54e
SL
35 position_independent_executables: true,
36 exe_allocation_crate: super::maybe_jemalloc(),
1a4d82fc
JJ
37 .. Default::default()
38 }
39}