Skip to content

Commit 18128d0

Browse files
committed
rustc_session: make cli early_fatal messages translatable
1 parent 7325f55 commit 18128d0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

compiler/rustc_session/messages.ftl

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ session_crate_name_empty = crate name must not be empty
1414
1515
session_crate_name_invalid = crate names cannot start with a `-`, but `{$s}` has a leading hyphen
1616
17+
session_empty_search_path = empty search path given via `-L`
18+
1719
session_expr_parentheses_needed = parentheses are required to parse this as an expression
1820
1921
session_failed_to_create_profiler = failed to create profiler: {$err}
@@ -86,6 +88,9 @@ session_profile_sample_use_file_does_not_exist = file `{$path}` passed to `-C pr
8688
8789
session_profile_use_file_does_not_exist = file `{$path}` passed to `-C profile-use` does not exist
8890
91+
session_rustc_builtin =
92+
the `-Z unstable-options` flag must also be passed to enable the use of `@RUSTC_BUILTIN`
93+
8994
session_sanitizer_cfi_canonical_jump_tables_requires_cfi = `-Zsanitizer-cfi-canonical-jump-tables` requires `-Zsanitizer=cfi`
9095
9196
session_sanitizer_cfi_generalize_pointers_requires_cfi = `-Zsanitizer-cfi-generalize-pointers` requires `-Zsanitizer=cfi` or `-Zsanitizer=kcfi`

compiler/rustc_session/src/search_paths.rs

+3-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use rustc_macros::{Decodable, Encodable, HashStable_Generic};
44
use rustc_target::spec::TargetTriple;
55

66
use crate::filesearch::make_target_lib_path;
7-
use crate::EarlyDiagCtxt;
7+
use crate::{fluent_generated, EarlyDiagCtxt};
88

99
#[derive(Clone, Debug)]
1010
pub struct SearchPath {
@@ -73,20 +73,15 @@ impl SearchPath {
7373
let dir = match path.strip_prefix("@RUSTC_BUILTIN") {
7474
Some(stripped) => {
7575
if !is_unstable_enabled {
76-
#[allow(rustc::untranslatable_diagnostic)] // FIXME: make this translatable
77-
early_dcx.early_fatal(
78-
"the `-Z unstable-options` flag must also be passed to \
79-
enable the use of `@RUSTC_BUILTIN`",
80-
);
76+
early_dcx.early_fatal(fluent_generated::session_rustc_builtin);
8177
}
8278

8379
make_target_lib_path(sysroot, triple.triple()).join("builtin").join(stripped)
8480
}
8581
None => PathBuf::from(path),
8682
};
8783
if dir.as_os_str().is_empty() {
88-
#[allow(rustc::untranslatable_diagnostic)] // FIXME: make this translatable
89-
early_dcx.early_fatal("empty search path given via `-L`");
84+
early_dcx.early_fatal(fluent_generated::session_empty_search_path);
9085
}
9186

9287
Self::new(kind, dir)

0 commit comments

Comments
 (0)