2015-01-09 22:03:37 -06:00
|
|
|
// Copyright 2012 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 base = super::linux_base::opts();
|
|
|
|
base.pre_link_args.push("-m32".to_string());
|
2016-04-15 14:16:19 -05:00
|
|
|
base.max_atomic_width = 32;
|
2015-01-09 22:03:37 -06:00
|
|
|
|
|
|
|
Target {
|
|
|
|
llvm_target: "powerpc-unknown-linux-gnu".to_string(),
|
|
|
|
target_endian: "big".to_string(),
|
2015-01-09 22:13:23 -06:00
|
|
|
target_pointer_width: "32".to_string(),
|
2016-04-18 07:38:45 -05:00
|
|
|
data_layout: "E-m:e-p:32:32-i64:64-n32".to_string(),
|
2015-01-09 22:03:37 -06:00
|
|
|
arch: "powerpc".to_string(),
|
|
|
|
target_os: "linux".to_string(),
|
2015-04-21 17:53:32 -05:00
|
|
|
target_env: "gnu".to_string(),
|
2015-09-23 18:20:43 -05:00
|
|
|
target_vendor: "unknown".to_string(),
|
2015-01-09 22:03:37 -06:00
|
|
|
options: base,
|
|
|
|
}
|
|
|
|
}
|