From a5cc34f606eac511ed2e1fe9c0c71b100d71c533 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 29 Sep 2025 11:58:40 -0700 Subject: [PATCH] build.ps1: adjust search path for dispatch for Android The current build relocates the headers to the proper location which was not previously done. Adjust the search paths accordingly. --- utils/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/build.ps1 b/utils/build.ps1 index e1577b34608db..e6efe8baa2a46 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -3064,7 +3064,7 @@ function Build-XCTest([Hashtable] $Platform) { $SwiftFlags = if ($Platform.OS -eq [OS]::Windows) { @(); } else { - @("-I$(Get-SwiftSDK -OS $Platform.OS -Identifier $Platform.DefaultSDK)\usr\lib\swift"); + @("-I$(Get-SwiftSDK -OS $Platform.OS -Identifier $Platform.DefaultSDK)\usr\include"); } Build-CMakeProject ` @@ -3127,7 +3127,7 @@ function Build-Testing([Hashtable] $Platform) { $SwiftFlags = if ($Platform.OS -eq [OS]::Windows) { @(); } else { - @("-I$(Get-SwiftSDK -OS $Platform.OS -Identifier $Platform.DefaultSDK)\usr\lib\swift"); + @("-I$(Get-SwiftSDK -OS $Platform.OS -Identifier $Platform.DefaultSDK)\usr\include"); } Build-CMakeProject `