From a5af48ee8ae31c80b79c0fa4e2d5db78ce6b3845 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sun, 21 Apr 2024 08:43:48 -0700 Subject: [PATCH] Add "visionos" as an apple target. (#1046) --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index d95f9a906..d14c2ddf6 100644 --- a/build.rs +++ b/build.rs @@ -121,7 +121,7 @@ fn main() { if netbsdlike { use_feature("netbsdlike"); } - let apple = os == "macos" || os == "ios" || os == "tvos" || os == "watchos"; + let apple = os == "macos" || os == "ios" || os == "tvos" || os == "visionos" || os == "watchos"; if apple { use_feature("apple"); }