Auto merge of #108796 - devsnek:personality-pal-exception, r=workingjubilee

move personality to sys

this moves `personality` to sys, removing another PAL exception
This commit is contained in:
bors 2023-07-10 05:19:37 +00:00
commit 743333f3dd
9 changed files with 1 additions and 3 deletions

View File

@ -603,7 +603,6 @@ pub mod arch {
// Private support modules
mod panicking;
mod personality;
#[path = "../../backtrace/src/lib.rs"]
#[allow(dead_code, unused_attributes, fuzzy_provenance_casts)]

View File

@ -23,6 +23,7 @@
#![allow(missing_debug_implementations)]
pub mod common;
mod personality;
cfg_if::cfg_if! {
if #[cfg(unix)] {

View File

@ -56,8 +56,6 @@
"library/std/src/path.rs",
"library/std/src/sys_common", // Should only contain abstractions over platforms
"library/std/src/net/test.rs", // Utility helpers for tests
"library/std/src/personality.rs",
"library/std/src/personality/",
];
pub fn check(path: &Path, bad: &mut bool) {