forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#136850 - jhpratt:rollup-rm72dxb, r=jhpratt
Rollup of 6 pull requests Successful merges: - rust-lang#134999 (Add cygwin target.) - rust-lang#135677 (Small `rustc_resolve` cleanups) - rust-lang#136699 (std: replace the `FromInner` implementation for addresses with private conversion functions) - rust-lang#136758 (tests: `-Copt-level=3` instead of `-O` in assembly tests) - rust-lang#136761 (tests: `-Copt-level=3` instead of `-O` in codegen tests) - rust-lang#136833 (compiler: die immediately instead of handling unknown target codegen) Failed merges: - rust-lang#136808 (Try to recover from path sep error in type parsing) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
294 changed files
with
648 additions
and
747 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
use std::borrow::Cow; | ||
|
||
use crate::spec::{Cc, DebuginfoKind, LinkerFlavor, Lld, SplitDebuginfo, TargetOptions, cvs}; | ||
|
||
pub(crate) fn opts() -> TargetOptions { | ||
let mut pre_link_args = TargetOptions::link_args( | ||
LinkerFlavor::Gnu(Cc::No, Lld::No), | ||
&["--disable-dynamicbase", "--enable-auto-image-base"], | ||
); | ||
crate::spec::add_link_args( | ||
&mut pre_link_args, | ||
LinkerFlavor::Gnu(Cc::Yes, Lld::No), | ||
&["-Wl,--disable-dynamicbase", "-Wl,--enable-auto-image-base"], | ||
); | ||
let cygwin_libs = &["-lcygwin", "-lgcc", "-lcygwin", "-luser32", "-lkernel32", "-lgcc_s"]; | ||
let mut late_link_args = | ||
TargetOptions::link_args(LinkerFlavor::Gnu(Cc::No, Lld::No), cygwin_libs); | ||
crate::spec::add_link_args( | ||
&mut late_link_args, | ||
LinkerFlavor::Gnu(Cc::Yes, Lld::No), | ||
cygwin_libs, | ||
); | ||
TargetOptions { | ||
os: "cygwin".into(), | ||
vendor: "pc".into(), | ||
// FIXME(#13846) this should be enabled for cygwin | ||
function_sections: false, | ||
linker: Some("gcc".into()), | ||
dynamic_linking: true, | ||
dll_prefix: "".into(), | ||
dll_suffix: ".dll".into(), | ||
exe_suffix: ".exe".into(), | ||
families: cvs!["unix"], | ||
is_like_windows: true, | ||
allows_weak_linkage: false, | ||
pre_link_args, | ||
late_link_args, | ||
abi_return_struct_as_int: true, | ||
emit_debug_gdb_scripts: false, | ||
requires_uwtable: true, | ||
eh_frame_header: false, | ||
debuginfo_kind: DebuginfoKind::Dwarf, | ||
supported_split_debuginfo: Cow::Borrowed(&[SplitDebuginfo::Off]), | ||
..Default::default() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
compiler/rustc_target/src/spec/targets/x86_64_pc_cygwin.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
use crate::spec::{Cc, LinkerFlavor, Lld, Target, base}; | ||
|
||
pub(crate) fn target() -> Target { | ||
let mut base = base::cygwin::opts(); | ||
base.cpu = "x86-64".into(); | ||
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::No, Lld::No), &["-m", "i386pep"]); | ||
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m64"]); | ||
base.max_atomic_width = Some(64); | ||
base.linker = Some("x86_64-pc-cygwin-gcc".into()); | ||
Target { | ||
llvm_target: "x86_64-pc-cygwin".into(), | ||
pointer_width: 64, | ||
data_layout: | ||
"e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128".into(), | ||
arch: "x86_64".into(), | ||
options: base, | ||
metadata: crate::spec::TargetMetadata { | ||
description: Some("64-bit x86 Cygwin".into()), | ||
tier: Some(3), | ||
host_tools: Some(false), | ||
std: None, | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.