Rollup merge of #62698 - jethrogb:jb/sgx-llvm-target, r=alexcrichton
SGX target: don't pretend to be GNU/Linux to LLVM See https://github.com/rust-lang/rust/pull/62592 & https://github.com/rust-lang-nursery/compiler-builtins/issues/303 r? @alexcrichton
This commit is contained in:
commit
da0c8feba4
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ pub fn target() -> Result<Target, String> {
|
|||
..Default::default()
|
||||
};
|
||||
Ok(Target {
|
||||
llvm_target: "x86_64-unknown-linux-gnu".into(),
|
||||
llvm_target: "x86_64-elf".into(),
|
||||
target_endian: "little".into(),
|
||||
target_pointer_width: "64".into(),
|
||||
target_c_int_width: "32".into(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue