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
Auto merge of rust-lang#132616 - workingjubilee:rollup-0ykzbyb, r=workingjubilee
Rollup of 10 pull requests
Successful merges:
- rust-lang#129884 (mark some target features as 'forbidden' so they cannot be (un)set with -Ctarget-feature)
- rust-lang#132153 (Stabilise `const_char_encode_utf16`.)
- rust-lang#132473 ([core/fmt] Replace checked slice indexing by unchecked to support panic-free code)
- rust-lang#132571 (add const_eval_select macro to reduce redundancy)
- rust-lang#132587 (Revert "Avoid nested replacement ranges" from rust-lang#129346.)
- rust-lang#132596 ([rustdoc] Fix `--show-coverage` when JSON output format is used)
- rust-lang#132598 (Clippy: Move some attribute lints to be early pass (post expansion))
- rust-lang#132601 (Update books)
- rust-lang#132606 (Improve example of `impl Pattern for &[char]`)
- rust-lang#132609 (docs: fix grammar in doc comment at unix/process.rs)
r? `@ghost`
`@rustbot` modify labels: rollup
target feature `{$feature}` cannot be toggled with `-Ctarget-feature`
13
+
11
14
codegen_gcc_unwinding_inline_asm =
12
15
GCC backend does not support unwinding from inline asm
13
16
@@ -24,11 +27,15 @@ codegen_gcc_lto_dylib = lto cannot be used for `dylib` crate type without `-Zdyl
24
27
codegen_gcc_lto_bitcode_from_rlib = failed to get bitcode from object file for LTO ({$gcc_err})
25
28
26
29
codegen_gcc_unknown_ctarget_feature =
27
-
unknown feature specified for `-Ctarget-feature`: `{$feature}`
28
-
.note = it is still passed through to the codegen backend
30
+
unknown and unstable feature specified for `-Ctarget-feature`: `{$feature}`
31
+
.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
29
32
.possible_feature = you might have meant: `{$rust_feature}`
30
33
.consider_filing_feature_request = consider filing a feature request
31
34
35
+
codegen_gcc_unstable_ctarget_feature =
36
+
unstable feature specified for `-Ctarget-feature`: `{$feature}`
37
+
.note = this feature is not stably supported; its behavior can change in the future
38
+
32
39
codegen_gcc_missing_features =
33
40
add the missing features in a `target_feature` attribute
codegen_llvm_fixed_x18_invalid_arch = the `-Zfixed-x18` flag is not supported on the `{$arch}` architecture
9
9
10
+
codegen_llvm_forbidden_ctarget_feature =
11
+
target feature `{$feature}` cannot be toggled with `-Ctarget-feature`: {$reason}
12
+
.note = this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
13
+
codegen_llvm_forbidden_ctarget_feature_issue = for more information, see issue #116344 <https://github.com/rust-lang/rust/issues/116344>
0 commit comments