Skip to content

Commit d8a32dd

Browse files
committed
rustc_target: Add a compatibility layer to separate internal and user-facing linker flavors
1 parent 801821d commit d8a32dd

File tree

5 files changed

+152
-61
lines changed

5 files changed

+152
-61
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,8 @@ pub fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
12361236

12371237
// linker and linker flavor specified via command line have precedence over what the target
12381238
// specification specifies
1239-
if let Some(ret) = infer_from(sess, sess.opts.cg.linker.clone(), sess.opts.cg.linker_flavor) {
1239+
let linker_flavor = sess.opts.cg.linker_flavor.map(LinkerFlavor::from_cli);
1240+
if let Some(ret) = infer_from(sess, sess.opts.cg.linker.clone(), linker_flavor) {
12401241
return ret;
12411242
}
12421243

compiler/rustc_session/src/config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet};
1212

1313
use rustc_data_structures::stable_hasher::ToStableHashKey;
1414
use rustc_target::abi::{Align, TargetDataLayout};
15-
use rustc_target::spec::{LinkerFlavor, SplitDebuginfo, Target, TargetTriple, TargetWarnings};
15+
use rustc_target::spec::{LinkerFlavorCli, SplitDebuginfo, Target, TargetTriple, TargetWarnings};
1616
use rustc_target::spec::{PanicStrategy, SanitizerSet, TARGETS};
1717

1818
use crate::parse::{CrateCheckConfig, CrateConfig};
@@ -2379,7 +2379,7 @@ pub fn build_session_options(matches: &getopts::Matches) -> Options {
23792379
}
23802380
}
23812381

2382-
if cg.linker_flavor == Some(LinkerFlavor::L4Bender)
2382+
if cg.linker_flavor == Some(LinkerFlavorCli::L4Bender)
23832383
&& !nightly_options::is_unstable_enabled(matches)
23842384
{
23852385
early_error(

compiler/rustc_session/src/options.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::lint;
55
use crate::search_paths::SearchPath;
66
use crate::utils::NativeLib;
77
use rustc_errors::LanguageIdentifier;
8-
use rustc_target::spec::{CodeModel, LinkerFlavor, MergeFunctions, PanicStrategy, SanitizerSet};
8+
use rustc_target::spec::{CodeModel, LinkerFlavorCli, MergeFunctions, PanicStrategy, SanitizerSet};
99
use rustc_target::spec::{
1010
RelocModel, RelroLevel, SplitDebuginfo, StackProtector, TargetTriple, TlsModel,
1111
};
@@ -382,7 +382,7 @@ mod desc {
382382
"either a boolean (`yes`, `no`, `on`, `off`, etc), `checks`, or `nochecks`";
383383
pub const parse_cfprotection: &str = "`none`|`no`|`n` (default), `branch`, `return`, or `full`|`yes`|`y` (equivalent to `branch` and `return`)";
384384
pub const parse_strip: &str = "either `none`, `debuginfo`, or `symbols`";
385-
pub const parse_linker_flavor: &str = ::rustc_target::spec::LinkerFlavor::one_of();
385+
pub const parse_linker_flavor: &str = ::rustc_target::spec::LinkerFlavorCli::one_of();
386386
pub const parse_optimization_fuel: &str = "crate=integer";
387387
pub const parse_mir_spanview: &str = "`statement` (default), `terminator`, or `block`";
388388
pub const parse_instrument_coverage: &str =
@@ -763,8 +763,8 @@ mod parse {
763763
true
764764
}
765765

766-
pub(crate) fn parse_linker_flavor(slot: &mut Option<LinkerFlavor>, v: Option<&str>) -> bool {
767-
match v.and_then(LinkerFlavor::from_str) {
766+
pub(crate) fn parse_linker_flavor(slot: &mut Option<LinkerFlavorCli>, v: Option<&str>) -> bool {
767+
match v.and_then(LinkerFlavorCli::from_str) {
768768
Some(lf) => *slot = Some(lf),
769769
_ => return false,
770770
}
@@ -1139,7 +1139,7 @@ options! {
11391139
on C toolchain installed in the system"),
11401140
linker: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
11411141
"system linker to link outputs with"),
1142-
linker_flavor: Option<LinkerFlavor> = (None, parse_linker_flavor, [UNTRACKED],
1142+
linker_flavor: Option<LinkerFlavorCli> = (None, parse_linker_flavor, [UNTRACKED],
11431143
"linker flavor"),
11441144
linker_plugin_lto: LinkerPluginLto = (LinkerPluginLto::Disabled,
11451145
parse_linker_plugin_lto, [TRACKED],

0 commit comments

Comments
 (0)