You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: compiler/rustc_codegen_gcc/messages.ftl
+9-2
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,9 @@ codegen_gcc_lto_not_supported =
11
11
codegen_gcc_tied_target_features = the target features {$features} must all be either enabled or disabled together
12
12
.help = add the missing features in a `target_feature` attribute
13
13
14
+
codegen_gcc_forbidden_ctarget_feature =
15
+
target feature `{$feature}` cannot be toggled with `-Ctarget-feature`
16
+
14
17
codegen_gcc_unwinding_inline_asm =
15
18
GCC backend does not support unwinding from inline asm
16
19
@@ -27,11 +30,15 @@ codegen_gcc_lto_dylib = lto cannot be used for `dylib` crate type without `-Zdyl
27
30
codegen_gcc_lto_bitcode_from_rlib = failed to get bitcode from object file for LTO ({$gcc_err})
28
31
29
32
codegen_gcc_unknown_ctarget_feature =
30
-
unknown feature specified for `-Ctarget-feature`: `{$feature}`
31
-
.note = it is still passed through to the codegen backend
33
+
unknown and unstable feature specified for `-Ctarget-feature`: `{$feature}`
34
+
.note = it is still passed through to the codegen backend, but use of this feature might be unsound and the behavior of this feature can change in the future
32
35
.possible_feature = you might have meant: `{$rust_feature}`
33
36
.consider_filing_feature_request = consider filing a feature request
34
37
38
+
codegen_gcc_unstable_ctarget_feature =
39
+
unstable feature specified for `-Ctarget-feature`: `{$feature}`
40
+
.note = this feature is not stably supported; its behavior can change in the future
41
+
35
42
codegen_gcc_missing_features =
36
43
add the missing features in a `target_feature` attribute
0 commit comments