@@ -2602,7 +2602,7 @@ fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2602
2602
let os = & sess. target . os ;
2603
2603
let llvm_target = & sess. target . llvm_target ;
2604
2604
if sess. target . vendor != "apple"
2605
- || !matches ! ( os. as_ref( ) , "ios" | "tvos" )
2605
+ || !matches ! ( os. as_ref( ) , "ios" | "tvos" | "watchos" )
2606
2606
|| flavor != LinkerFlavor :: Gcc
2607
2607
{
2608
2608
return ;
@@ -2612,11 +2612,16 @@ fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2612
2612
( "x86_64" , "tvos" ) => "appletvsimulator" ,
2613
2613
( "arm" , "ios" ) => "iphoneos" ,
2614
2614
( "aarch64" , "ios" ) if llvm_target. contains ( "macabi" ) => "macosx" ,
2615
- ( "aarch64" , "ios" ) if llvm_target. contains ( "sim ") => "iphonesimulator" ,
2615
+ ( "aarch64" , "ios" ) if llvm_target. ends_with ( "-simulator ") => "iphonesimulator" ,
2616
2616
( "aarch64" , "ios" ) => "iphoneos" ,
2617
2617
( "x86" , "ios" ) => "iphonesimulator" ,
2618
2618
( "x86_64" , "ios" ) if llvm_target. contains ( "macabi" ) => "macosx" ,
2619
2619
( "x86_64" , "ios" ) => "iphonesimulator" ,
2620
+ ( "x86_64" , "watchos" ) => "watchsimulator" ,
2621
+ ( "arm64_32" , "watchos" ) => "watchos" ,
2622
+ ( "aarch64" , "watchos" ) if llvm_target. ends_with ( "-simulator" ) => "watchsimulator" ,
2623
+ ( "aarch64" , "watchos" ) => "watchos" ,
2624
+ ( "arm" , "watchos" ) => "watchos" ,
2620
2625
_ => {
2621
2626
sess. err ( & format ! ( "unsupported arch `{}` for os `{}`" , arch, os) ) ;
2622
2627
return ;
@@ -2663,6 +2668,11 @@ fn get_apple_sdk_root(sdk_name: &str) -> Result<String, String> {
2663
2668
"macosx10.15"
2664
2669
if sdkroot. contains ( "iPhoneOS.platform" )
2665
2670
|| sdkroot. contains ( "iPhoneSimulator.platform" ) => { }
2671
+ "watchos"
2672
+ if sdkroot. contains ( "WatchSimulator.platform" )
2673
+ || sdkroot. contains ( "MacOSX.platform" ) => { }
2674
+ "watchsimulator"
2675
+ if sdkroot. contains ( "WatchOS.platform" ) || sdkroot. contains ( "MacOSX.platform" ) => { }
2666
2676
// Ignore `SDKROOT` if it's not a valid path.
2667
2677
_ if !p. is_absolute ( ) || p == Path :: new ( "/" ) || !p. exists ( ) => { }
2668
2678
_ => return Ok ( sdkroot) ,
0 commit comments