]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/codegen_llvm.ftl
Rollup merge of #107022 - scottmcm:ordering-option-eq, r=m-ou-se
[rust.git] / compiler / rustc_error_messages / locales / en-US / codegen_llvm.ftl
1 codegen_llvm_unknown_ctarget_feature =
2     unknown feature specified for `-Ctarget-feature`: `{$feature}`
3     .note = it is still passed through to the codegen backend
4     .possible_feature = you might have meant: `{$rust_feature}`
5     .consider_filing_feature_request = consider filing a feature request
6
7 codegen_llvm_unknown_ctarget_feature_prefix =
8     unknown feature specified for `-Ctarget-feature`: `{$feature}`
9     .note = features must begin with a `+` to enable or `-` to disable it
10
11 codegen_llvm_error_creating_import_library =
12     Error creating import library for {$lib_name}: {$error}
13
14 codegen_llvm_symbol_already_defined =
15     symbol `{$symbol_name}` is already defined
16
17 codegen_llvm_invalid_minimum_alignment =
18     invalid minimum global alignment: {$err}
19
20 codegen_llvm_sanitizer_memtag_requires_mte =
21     `-Zsanitizer=memtag` requires `-Ctarget-feature=+mte`
22
23 codegen_llvm_error_writing_def_file =
24     Error writing .DEF file: {$error}
25
26 codegen_llvm_error_calling_dlltool =
27     Error calling dlltool: {$error}
28
29 codegen_llvm_dlltool_fail_import_library =
30     Dlltool could not create import library: {$stdout}\n{$stderr}
31
32 codegen_llvm_target_feature_disable_or_enable =
33     the target features {$features} must all be either enabled or disabled together
34
35 codegen_llvm_missing_features =
36     add the missing features in a `target_feature` attribute
37
38 codegen_llvm_dynamic_linking_with_lto =
39     cannot prefer dynamic linking when performing LTO
40     .note = only 'staticlib', 'bin', and 'cdylib' outputs are supported with LTO
41
42 codegen_llvm_fail_parsing_target_machine_config_to_target_machine =
43     failed to parse target machine config to target machine: {$error}