2024-07-13 12:35:05 -05:00
|
|
|
monomorphize_abi_error_disabled_vector_type_call =
|
|
|
|
ABI error: this function call uses a vector type that requires the `{$required_feature}` target feature, which is not enabled in the caller
|
|
|
|
.label = function called here
|
|
|
|
.help = consider enabling it globally (`-C target-feature=+{$required_feature}`) or locally (`#[target_feature(enable="{$required_feature}")]`)
|
|
|
|
monomorphize_abi_error_disabled_vector_type_def =
|
|
|
|
ABI error: this function definition uses a vector type that requires the `{$required_feature}` target feature, which is not enabled
|
|
|
|
.label = function defined here
|
|
|
|
.help = consider enabling it globally (`-C target-feature=+{$required_feature}`) or locally (`#[target_feature(enable="{$required_feature}")]`)
|
|
|
|
|
2022-08-18 16:51:47 -05:00
|
|
|
monomorphize_couldnt_dump_mono_stats =
|
|
|
|
unexpected error occurred while dumping monomorphization stats: {$error}
|
2022-08-23 12:20:01 -05:00
|
|
|
|
|
|
|
monomorphize_encountered_error_while_instantiating =
|
|
|
|
the above error was encountered while instantiating `{$formatted_item}`
|
|
|
|
|
2022-08-18 16:51:47 -05:00
|
|
|
monomorphize_large_assignments =
|
|
|
|
moving {$size} bytes
|
|
|
|
.label = value moved from here
|
|
|
|
.note = The current maximum size is {$limit}, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`
|
2022-12-08 13:21:08 -06:00
|
|
|
|
2023-08-29 12:29:14 -05:00
|
|
|
monomorphize_no_optimized_mir =
|
|
|
|
missing optimized MIR for an item in the crate `{$crate_name}`
|
|
|
|
.note = missing optimized MIR for this item (was the crate `{$crate_name}` compiled with `--emit=metadata`?)
|
|
|
|
|
2022-12-08 13:21:08 -06:00
|
|
|
monomorphize_recursion_limit =
|
|
|
|
reached the recursion limit while instantiating `{$shrunk}`
|
|
|
|
.note = `{$def_path_str}` defined here
|
2022-08-19 08:48:15 -05:00
|
|
|
|
2023-10-02 07:32:31 -05:00
|
|
|
monomorphize_start_not_found = using `fn main` requires the standard library
|
|
|
|
.help = use `#![no_main]` to bypass the Rust generated entrypoint and declare a platform specific entrypoint yourself, usually with `#[no_mangle]`
|
|
|
|
|
2022-08-19 08:48:15 -05:00
|
|
|
monomorphize_symbol_already_defined = symbol `{$symbol}` is already defined
|
2023-05-22 20:51:25 -05:00
|
|
|
|
2022-08-19 08:48:15 -05:00
|
|
|
monomorphize_unknown_cgu_collection_mode =
|
|
|
|
unknown codegen-item collection mode '{$mode}', falling back to 'lazy' mode
|
2023-05-22 20:51:25 -05:00
|
|
|
|
2022-08-18 16:51:47 -05:00
|
|
|
monomorphize_unused_generic_params = item has unused generic parameters
|
2023-05-22 20:51:25 -05:00
|
|
|
|
2022-08-18 16:51:47 -05:00
|
|
|
monomorphize_written_to_path = the full type name has been written to '{$path}'
|