Skip to content

Commit

Permalink
Adjust the std library for sanitizer_cfi cfgs changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Urgau committed Dec 22, 2023
1 parent cc6cbaa commit 6a0a0c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions library/std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@
#![feature(allow_internal_unsafe)]
#![feature(allow_internal_unstable)]
#![feature(c_unwind)]
#![feature(cfg_sanitizer_cfi)]
#![feature(cfg_target_thread_local)]
#![feature(cfi_encoding)]
#![feature(concat_idents)]
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/unix/thread_local_dtor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// Note, however, that we run on lots older linuxes, as well as cross
// compiling from a newer linux to an older linux, so we also have a
// fallback implementation to use as well.
#[allow(unexpected_cfgs)]
#[cfg_attr(not(bootstrap), allow(unexpected_cfgs))]
#[cfg(any(
target_os = "linux",
target_os = "android",
Expand Down

0 comments on commit 6a0a0c2

Please sign in to comment.