diff options
author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2023-02-02 07:17:46 +0100 |
---|---|---|
committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2023-02-02 07:34:41 +0100 |
commit | 2aceaf4849a806813c31e9987df458e08c11e5f3 (patch) | |
tree | b47c1afcbb519e4ae64919507c9b0bcfd961e577 /compiler/rustc_error_messages | |
parent | 73681323e611972caa9a6107312c9e1f74467545 (diff) | |
download | rust-2aceaf4849a806813c31e9987df458e08c11e5f3.tar.gz |
Add a new `rustc_driver` dylib to rexport `rustc_driver_impl`
Diffstat (limited to 'compiler/rustc_error_messages')
-rw-r--r-- | compiler/rustc_error_messages/locales/en-US/driver.ftl | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/compiler/rustc_error_messages/locales/en-US/driver.ftl b/compiler/rustc_error_messages/locales/en-US/driver.ftl index 79ffc82c6c6..f19b1ff6426 100644 --- a/compiler/rustc_error_messages/locales/en-US/driver.ftl +++ b/compiler/rustc_error_messages/locales/en-US/driver.ftl @@ -1,19 +1,19 @@ -driver_rlink_unable_to_read = failed to read rlink file: `{$err}` +driver_impl_rlink_unable_to_read = failed to read rlink file: `{$err}` -driver_rlink_wrong_file_type = The input does not look like a .rlink file +driver_impl_rlink_wrong_file_type = The input does not look like a .rlink file -driver_rlink_empty_version_number = The input does not contain version number +driver_impl_rlink_empty_version_number = The input does not contain version number -driver_rlink_encoding_version_mismatch = .rlink file was produced with encoding version `{$version_array}`, but the current version is `{$rlink_version}` +driver_impl_rlink_encoding_version_mismatch = .rlink file was produced with encoding version `{$version_array}`, but the current version is `{$rlink_version}` -driver_rlink_rustc_version_mismatch = .rlink file was produced by rustc version `{$rustc_version}`, but the current version is `{$current_version}` +driver_impl_rlink_rustc_version_mismatch = .rlink file was produced by rustc version `{$rustc_version}`, but the current version is `{$current_version}` -driver_rlink_no_a_file = rlink must be a file +driver_impl_rlink_no_a_file = rlink must be a file -driver_unpretty_dump_fail = pretty-print failed to write `{$path}` due to error `{$err}` +driver_impl_unpretty_dump_fail = pretty-print failed to write `{$path}` due to error `{$err}` -driver_ice = the compiler unexpectedly panicked. this is a bug. -driver_ice_bug_report = we would appreciate a bug report: {$bug_report_url} -driver_ice_version = rustc {$version} running on {$triple} -driver_ice_flags = compiler flags: {$flags} -driver_ice_exclude_cargo_defaults = some of the compiler flags provided by cargo are hidden +driver_impl_ice = the compiler unexpectedly panicked. this is a bug. +driver_impl_ice_bug_report = we would appreciate a bug report: {$bug_report_url} +driver_impl_ice_version = rustc {$version} running on {$triple} +driver_impl_ice_flags = compiler flags: {$flags} +driver_impl_ice_exclude_cargo_defaults = some of the compiler flags provided by cargo are hidden |