2025-02-18 16:51:47 +01:00
|
|
|
monomorphize_abi_error_disabled_vector_type =
|
|
|
|
this function {$is_call ->
|
|
|
|
[true] call
|
|
|
|
*[false] definition
|
|
|
|
} uses SIMD vector type `{$ty}` which (with the chosen ABI) requires the `{$required_feature}` target feature, which is not enabled{$is_call ->
|
|
|
|
[true] {" "}in the caller
|
|
|
|
*[false] {""}
|
|
|
|
}
|
|
|
|
.label = function {$is_call ->
|
|
|
|
[true] called
|
|
|
|
*[false] defined
|
|
|
|
} here
|
2024-07-13 19:35:05 +02:00
|
|
|
.help = consider enabling it globally (`-C target-feature=+{$required_feature}`) or locally (`#[target_feature(enable="{$required_feature}")]`)
|
|
|
|
|
2025-02-18 16:51:47 +01:00
|
|
|
monomorphize_abi_error_unsupported_vector_type =
|
|
|
|
this function {$is_call ->
|
|
|
|
[true] call
|
|
|
|
*[false] definition
|
|
|
|
} uses SIMD vector type `{$ty}` which is not currently supported with the chosen ABI
|
|
|
|
.label = function {$is_call ->
|
|
|
|
[true] called
|
|
|
|
*[false] defined
|
|
|
|
} here
|
2024-11-10 11:36:50 +01:00
|
|
|
|
2025-02-18 17:17:16 +01:00
|
|
|
monomorphize_abi_required_target_feature =
|
|
|
|
this function {$is_call ->
|
|
|
|
[true] call
|
|
|
|
*[false] definition
|
|
|
|
} uses ABI "{$abi}" which requires the `{$required_feature}` target feature, which is not enabled{$is_call ->
|
|
|
|
[true] {" "}in the caller
|
|
|
|
*[false] {""}
|
|
|
|
}
|
|
|
|
.label = function {$is_call ->
|
|
|
|
[true] called
|
|
|
|
*[false] defined
|
|
|
|
} here
|
|
|
|
.help = consider enabling it globally (`-C target-feature=+{$required_feature}`) or locally (`#[target_feature(enable="{$required_feature}")]`)
|
|
|
|
|
2022-08-18 15:51:47 -06:00
|
|
|
monomorphize_couldnt_dump_mono_stats =
|
|
|
|
unexpected error occurred while dumping monomorphization stats: {$error}
|
2022-08-23 11:20:01 -06:00
|
|
|
|
|
|
|
monomorphize_encountered_error_while_instantiating =
|
|
|
|
the above error was encountered while instantiating `{$formatted_item}`
|
|
|
|
|
2022-08-18 15:51:47 -06: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 19:21:08 +00:00
|
|
|
|
2023-08-29 19:29:14 +02:00
|
|
|
monomorphize_no_optimized_mir =
|
2025-03-27 12:08:00 +00:00
|
|
|
missing optimized MIR for `{$instance}` in the crate `{$crate_name}`
|
2023-08-29 19:29:14 +02:00
|
|
|
.note = missing optimized MIR for this item (was the crate `{$crate_name}` compiled with `--emit=metadata`?)
|
|
|
|
|
2022-12-08 19:21:08 +00:00
|
|
|
monomorphize_recursion_limit =
|
|
|
|
reached the recursion limit while instantiating `{$shrunk}`
|
|
|
|
.note = `{$def_path_str}` defined here
|
2022-08-19 14:48:15 +01:00
|
|
|
|
2023-10-02 12:32:31 +00: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 14:48:15 +01:00
|
|
|
monomorphize_symbol_already_defined = symbol `{$symbol}` is already defined
|
2023-05-23 01:51:25 +00:00
|
|
|
|
2022-08-19 14:48:15 +01:00
|
|
|
monomorphize_unknown_cgu_collection_mode =
|
|
|
|
unknown codegen-item collection mode '{$mode}', falling back to 'lazy' mode
|
2023-05-23 01:51:25 +00:00
|
|
|
|
2025-03-17 12:10:43 +01:00
|
|
|
monomorphize_wasm_c_abi_transition =
|
|
|
|
this function {$is_call ->
|
|
|
|
[true] call
|
|
|
|
*[false] definition
|
|
|
|
} involves an argument of type `{$ty}` which is affected by the wasm ABI transition
|
|
|
|
.help = the "C" ABI Rust uses on wasm32-unknown-unknown will change to align with the standard "C" ABI for this target
|
|
|
|
|
2022-08-18 15:51:47 -06:00
|
|
|
monomorphize_written_to_path = the full type name has been written to '{$path}'
|