2020-10-05 15:37:55 +03:00
|
|
|
use crate::spec::{LinkerFlavor, LldFlavor, Target};
|
2015-06-25 15:32:10 -07:00
|
|
|
|
2020-10-05 15:37:55 +03:00
|
|
|
pub fn target() -> Target {
|
2015-06-25 15:32:10 -07:00
|
|
|
let mut base = super::windows_msvc_base::opts();
|
2015-08-10 17:53:00 -04:00
|
|
|
base.cpu = "pentium4".to_string();
|
2016-10-03 23:45:40 -05:00
|
|
|
base.max_atomic_width = Some(64);
|
2015-06-25 15:32:10 -07:00
|
|
|
|
2020-04-11 02:52:34 +03:00
|
|
|
let pre_link_args_msvc = vec![
|
|
|
|
|
// Mark all dynamic libraries and executables as compatible with the larger 4GiB address
|
|
|
|
|
// space available to x86 Windows binaries on x86_64.
|
|
|
|
|
"/LARGEADDRESSAWARE".to_string(),
|
|
|
|
|
// Ensure the linker will only produce an image if it can also produce a table of
|
|
|
|
|
// the image's safe exception handlers.
|
|
|
|
|
// https://docs.microsoft.com/en-us/cpp/build/reference/safeseh-image-has-safe-exception-handlers
|
|
|
|
|
"/SAFESEH".to_string(),
|
|
|
|
|
];
|
|
|
|
|
base.pre_link_args.get_mut(&LinkerFlavor::Msvc).unwrap().extend(pre_link_args_msvc.clone());
|
|
|
|
|
base.pre_link_args
|
|
|
|
|
.get_mut(&LinkerFlavor::Lld(LldFlavor::Link))
|
|
|
|
|
.unwrap()
|
|
|
|
|
.extend(pre_link_args_msvc);
|
2016-02-09 17:20:32 +00:00
|
|
|
|
2020-10-05 15:37:55 +03:00
|
|
|
Target {
|
2015-06-25 15:32:10 -07:00
|
|
|
llvm_target: "i686-pc-windows-msvc".to_string(),
|
|
|
|
|
target_endian: "little".to_string(),
|
|
|
|
|
target_pointer_width: "32".to_string(),
|
2017-09-30 13:47:49 +02:00
|
|
|
target_c_int_width: "32".to_string(),
|
2020-01-07 21:26:52 +01:00
|
|
|
data_layout: "e-m:x-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
|
|
|
|
|
i64:64-f80:32-n8:16:32-a:0:32-S32"
|
|
|
|
|
.to_string(),
|
2015-06-25 15:32:10 -07:00
|
|
|
arch: "x86".to_string(),
|
|
|
|
|
target_os: "windows".to_string(),
|
|
|
|
|
target_env: "msvc".to_string(),
|
2015-09-24 01:20:43 +02:00
|
|
|
target_vendor: "pc".to_string(),
|
-Z linker-flavor
This patch adds a `-Z linker-flavor` flag to rustc which can be used to invoke
the linker using a different interface.
For example, by default rustc assumes that all the Linux targets will be linked
using GCC. This makes it impossible to use LLD as a linker using just `-C
linker=ld.lld` because that will invoke LLD with invalid command line
arguments. (e.g. rustc will pass -Wl,--gc-sections to LLD but LLD doesn't
understand that; --gc-sections would be the right argument)
With this patch one can pass `-Z linker-flavor=ld` to rustc to invoke the linker
using a LD-like interface. This way, `rustc -C linker=ld.lld -Z
linker-flavor=ld` will invoke LLD with the right arguments.
`-Z linker-flavor` accepts 4 different arguments: `em` (emcc), `ld`,
`gcc`, `msvc` (link.exe). `em`, `gnu` and `msvc` cover all the existing linker
interfaces. `ld` is a new flavor for interfacing GNU's ld and LLD.
This patch also changes target specifications. `linker-flavor` is now a
mandatory field that specifies the *default* linker flavor that the target will
use. This change also makes the linker interface *explicit*; before, it used to
be derived from other fields like linker-is-gnu, is-like-msvc,
is-like-emscripten, etc.
Another change to target specifications is that the fields `pre-link-args`,
`post-link-args` and `late-link-args` now expect a map from flavor to linker
arguments.
``` diff
- "pre-link-args": ["-Wl,--as-needed", "-Wl,-z,-noexecstack"],
+ "pre-link-args": {
+ "gcc": ["-Wl,--as-needed", "-Wl,-z,-noexecstack"],
+ "ld": ["--as-needed", "-z,-noexecstack"],
+ },
```
[breaking-change] for users of custom targets specifications
2017-02-21 14:47:15 -05:00
|
|
|
linker_flavor: LinkerFlavor::Msvc,
|
2015-06-25 15:32:10 -07:00
|
|
|
options: base,
|
2020-10-05 15:37:55 +03:00
|
|
|
}
|
2015-06-25 15:32:10 -07:00
|
|
|
}
|