summary refs log tree commit diff
path: root/src/librustc_back/target/i686_pc_windows_gnu.rs
blob: 249f2d440e68155fd01960d9924930cadfe85a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use target::Target;

pub fn target() -> Target {
    let mut options = super::windows_base::opts();
    options.cpu = "pentium4".to_string();

    // Mark all dynamic libraries and executables as compatible with the larger 4GiB address
    // space available to x86 Windows binaries on x86_64.
    options.pre_link_args.push("-Wl,--large-address-aware".to_string());

    // Make sure that we link to the dynamic libgcc, otherwise cross-module
    // DWARF stack unwinding will not work.
    // This behavior may be overridden by -Clink-args="-static-libgcc"
    options.pre_link_args.push("-shared-libgcc".to_string());

    Target {
        data_layout: "e-p:32:32-f64:64:64-i64:64:64-f80:32:32-n8:16:32".to_string(),
        llvm_target: "i686-pc-windows-gnu".to_string(),
        target_endian: "little".to_string(),
        target_pointer_width: "32".to_string(),
        arch: "x86".to_string(),
        target_os: "windows".to_string(),
        options: options,
    }
}