]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/codegen_llvm.ftl
Auto merge of #107241 - clubby789:bootstrap-lto-off, r=simulacrum
[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_parse_target_machine_config =
43     failed to parse target machine config to target machine: {$error}
44
45 codegen_llvm_lto_disallowed = lto can only be run for executables, cdylibs and static library outputs
46
47 codegen_llvm_lto_dylib = lto cannot be used for `dylib` crate type without `-Zdylib-lto`
48
49 codegen_llvm_lto_bitcode_from_rlib = failed to get bitcode from object file for LTO ({$llvm_err})
50
51 codegen_llvm_write_output = could not write output to {$path}
52 codegen_llvm_write_output_with_llvm_err = could not write output to {$path}: {$llvm_err}
53
54 codegen_llvm_target_machine = could not create LLVM TargetMachine for triple: {$triple}
55 codegen_llvm_target_machine_with_llvm_err = could not create LLVM TargetMachine for triple: {$triple}: {$llvm_err}
56
57 codegen_llvm_run_passes = failed to run LLVM passes
58 codegen_llvm_run_passes_with_llvm_err = failed to run LLVM passes: {$llvm_err}
59
60 codegen_llvm_serialize_module = failed to serialize module {$name}
61 codegen_llvm_serialize_module_with_llvm_err = failed to serialize module {$name}: {$llvm_err}
62
63 codegen_llvm_write_ir = failed to write LLVM IR to {$path}
64 codegen_llvm_write_ir_with_llvm_err = failed to write LLVM IR to {$path}: {$llvm_err}
65
66 codegen_llvm_prepare_thin_lto_context = failed to prepare thin LTO context
67 codegen_llvm_prepare_thin_lto_context_with_llvm_err = failed to prepare thin LTO context: {$llvm_err}
68
69 codegen_llvm_load_bitcode = failed to load bitcode of module "{$name}"
70 codegen_llvm_load_bitcode_with_llvm_err = failed to load bitcode of module "{$name}": {$llvm_err}
71
72 codegen_llvm_write_thinlto_key = error while writing ThinLTO key data: {$err}
73 codegen_llvm_write_thinlto_key_with_llvm_err = error while writing ThinLTO key data: {$err}: {$llvm_err}
74
75 codegen_llvm_multiple_source_dicompileunit = multiple source DICompileUnits found
76 codegen_llvm_multiple_source_dicompileunit_with_llvm_err = multiple source DICompileUnits found: {$llvm_err}
77
78 codegen_llvm_prepare_thin_lto_module = failed to prepare thin LTO module
79 codegen_llvm_prepare_thin_lto_module_with_llvm_err = failed to prepare thin LTO module: {$llvm_err}
80
81 codegen_llvm_parse_bitcode = failed to parse bitcode for LTO module
82 codegen_llvm_parse_bitcode_with_llvm_err = failed to parse bitcode for LTO module: {$llvm_err}
83
84 codegen_llvm_from_llvm_optimization_diag = {$filename}:{$line}:{$column} {$pass_name}: {$message}
85 codegen_llvm_from_llvm_diag = {$message}
86
87 codegen_llvm_write_bytecode = failed to write bytecode to {$path}: {$err}
88
89 codegen_llvm_copy_bitcode = failed to copy bitcode to object file: {$err}