Skip to content

Commit 8437ab2

Browse files
authored
Unrolled build for rust-lang#123721
Rollup merge of rust-lang#123721 - madsmtm:fix-visionos, r=davidtwco Various visionOS fixes A few small mistakes was introduced in rust-lang#121419, probably after the rename from `xros` to `visionos`. See the commits for details. CC `@agg23` Since you reviewed rust-lang#121419 r? davidtwco
2 parents 4e1f5d9 + 1a72384 commit 8437ab2

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -3038,9 +3038,10 @@ fn get_apple_sdk_root(sdk_name: &str) -> Result<String, errors::AppleSdkRootErro
30383038
|| sdkroot.contains("MacOSX.platform") => {}
30393039
"watchsimulator"
30403040
if sdkroot.contains("WatchOS.platform") || sdkroot.contains("MacOSX.platform") => {}
3041-
"visionos"
3042-
if sdkroot.contains("XROS.platform") || sdkroot.contains("MacOSX.platform") => {}
3043-
"visionossimulator"
3041+
"xros"
3042+
if sdkroot.contains("XRSimulator.platform")
3043+
|| sdkroot.contains("MacOSX.platform") => {}
3044+
"xrsimulator"
30443045
if sdkroot.contains("XROS.platform") || sdkroot.contains("MacOSX.platform") => {}
30453046
// Ignore `SDKROOT` if it's not a valid path.
30463047
_ if !p.is_absolute() || p == Path::new("/") || !p.exists() => {}

compiler/rustc_target/src/spec/base/apple/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@ fn link_env_remove(os: &'static str) -> StaticCow<[StaticCow<str>]> {
298298
|| sdkroot.contains("WatchOS.platform")
299299
|| sdkroot.contains("WatchSimulator.platform")
300300
|| sdkroot.contains("XROS.platform")
301+
|| sdkroot.contains("XRSimulator.platform")
301302
{
302303
env_remove.push("SDKROOT".into())
303304
}

library/std/src/sys/pal/unix/process/process_unix.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,6 @@ use crate::os::linux::process::PidFd;
1111
#[cfg(target_os = "linux")]
1212
use crate::os::unix::io::AsRawFd;
1313

14-
#[cfg(any(
15-
target_os = "macos",
16-
target_os = "watchos",
17-
target_os = "visionos",
18-
target_os = "tvos",
19-
target_os = "freebsd",
20-
all(target_os = "linux", target_env = "gnu"),
21-
all(target_os = "linux", target_env = "musl"),
22-
target_os = "nto",
23-
))]
24-
use crate::sys::weak::weak;
25-
2614
#[cfg(target_os = "vxworks")]
2715
use libc::RTP_ID as pid_t;
2816

@@ -466,6 +454,7 @@ impl Command {
466454
envp: Option<&CStringArray>,
467455
) -> io::Result<Option<Process>> {
468456
use crate::mem::MaybeUninit;
457+
use crate::sys::weak::weak;
469458
use crate::sys::{self, cvt_nz, unix_sigpipe_attr_specified};
470459

471460
if self.get_gid().is_some()

0 commit comments

Comments
 (0)