]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/codegen_llvm.ftl
Port diagnostics created by `Handler`
[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
4 codegen_llvm_unknown_feature_prefix =
5     features must begin with a `+` to enable or `-` to disable it
6
7 codegen_llvm_unknown_feature =
8     it is still passed through to the codegen backend
9
10 codegen_llvm_rust_feature =
11     you might have meant: `{$rust_feature}`
12
13 codegen_llvm_unknown_feature_fill_request =
14     consider filing a feature request
15
16 codegen_llvm_error_creating_import_library =
17     Error creating import library for {$lib_name}: {$error}
18
19 codegen_llvm_instrument_coverage_requires_llvm_12 =
20     rustc option `-C instrument-coverage` requires LLVM 12 or higher.
21
22 codegen_llvm_symbol_already_defined =
23     symbol `{$symbol_name}` is already defined
24
25 codegen_llvm_branch_protection_requires_aarch64 =
26     -Zbranch-protection is only supported on aarch64
27
28 codegen_llvm_layout_size_overflow =
29     {$error}
30
31 codegen_llvm_invalid_minimum_alignment =
32     invalid minimum global alignment: {$err}
33
34 codegen_llvm_linkage_const_or_mut_type =
35     must have type `*const T` or `*mut T` due to `#[linkage]` attribute
36
37 codegen_llvm_sanitizer_memtag_requires_mte =
38     `-Zsanitizer=memtag` requires `-Ctarget-feature=+mte`
39
40 codegen_llvm_archive_build_failure =
41     failed to build archive: {$error}
42
43 codegen_llvm_error_writing_def_file =
44     Error writing .DEF file: {$error}
45
46 codegen_llvm_error_calling_dlltool =
47     Error calling dlltool: {$error}
48
49 codegen_llvm_dlltool_fail_import_library =
50     Dlltool could not create import library: {$stdout}\n{$stderr}
51
52 codegen_llvm_unknown_archive_kind =
53     Don't know how to build archive of type: {$kind}
54
55 codegen_llvm_target_feature_disable_or_enable =
56     the target features {$features} must all be either enabled or disabled together
57
58 codegen_llvm_missing_features =
59     add the missing features in a `target_feature` attribute
60
61 codegen_llvm_dynamic_linking_with_lto =
62     cannot prefer dynamic linking when performing LTO
63     .note = only 'staticlib', 'bin', and 'cdylib' outputs are supported with LTO
64
65 codegen_llvm_fail_parsing_target_machine_config_to_target_machine =
66     failed to parse target machine config to target machine: {$error}