Skip to content

Commit e7b2052

Browse files
committed
Auto merge of #28355 - DiamondLovesYou:pnacl-librustc-trans, r=alexcrichton
r? @alexcrichton
2 parents 5eac68c + e497d4a commit e7b2052

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// Copyright 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+
11+
use super::{Target, TargetOptions};
12+
13+
pub fn target() -> Target {
14+
let opts = TargetOptions {
15+
linker: "pnacl-clang".to_string(),
16+
ar: "pnacl-ar".to_string(),
17+
18+
pre_link_args: vec!("--pnacl-exceptions=sjlj".to_string(),
19+
"--target=le32-unknown-nacl".to_string(),
20+
"-Wl,--start-group".to_string()),
21+
post_link_args: vec!("-Wl,--end-group".to_string()),
22+
dynamic_linking: false,
23+
executables: true,
24+
exe_suffix: ".pexe".to_string(),
25+
no_compiler_rt: false,
26+
linker_is_gnu: true,
27+
allow_asm: false,
28+
archive_format: "gnu".to_string(),
29+
.. Default::default()
30+
};
31+
Target {
32+
llvm_target: "le32-unknown-nacl".to_string(),
33+
target_endian: "little".to_string(),
34+
target_pointer_width: "32".to_string(),
35+
target_os: "nacl".to_string(),
36+
target_env: "newlib".to_string(),
37+
target_vendor: "unknown".to_string(),
38+
arch: "le32".to_string(),
39+
options: opts,
40+
}
41+
}

src/librustc_back/target/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,9 @@ impl Target {
426426
i686_pc_windows_gnu,
427427

428428
x86_64_pc_windows_msvc,
429-
i686_pc_windows_msvc
429+
i686_pc_windows_msvc,
430+
431+
le32_unknown_nacl
430432
);
431433

432434

src/librustc_trans/trans/context.rs

-1
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,6 @@ fn declare_intrinsic(ccx: &CrateContext, key: &str) -> Option<ValueRef> {
838838

839839
ifn!("llvm.trap", fn() -> void);
840840
ifn!("llvm.debugtrap", fn() -> void);
841-
ifn!("llvm.frameaddress", fn(t_i32) -> i8p);
842841

843842
ifn!("llvm.powi.f32", fn(t_f32, t_i32) -> t_f32);
844843
ifn!("llvm.powi.f64", fn(t_f64, t_i32) -> t_f64);

0 commit comments

Comments
 (0)