]> git.proxmox.com Git - rustc.git/blame - src/librustc_back/target/openbsd_base.rs
New upstream version 1.26.2+dfsg1
[rustc.git] / src / librustc_back / target / openbsd_base.rs
CommitLineData
85aaf69f
SL
1// Copyright 2014-2015 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 11use LinkerFlavor;
3b2f2976 12use target::{LinkArgs, TargetOptions, RelroLevel};
85aaf69f
SL
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
85aaf69f 28 TargetOptions {
85aaf69f
SL
29 dynamic_linking: true,
30 executables: true,
32a655c1 31 target_family: Some("unix".to_string()),
85aaf69f
SL
32 linker_is_gnu: true,
33 has_rpath: true,
0531ce1d 34 abi_return_struct_as_int: true,
cc61c64b 35 pre_link_args: args,
85aaf69f 36 position_independent_executables: true,
ff7c6d11 37 eliminate_frame_pointer: false, // FIXME 43575
3b2f2976 38 relro_level: RelroLevel::Full,
85aaf69f
SL
39 .. Default::default()
40 }
41}