]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/codegen_llvm.ftl
e4e1abfe21971f78057898a71964f0fd3c4c78e1
[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`