Skip to content

Commit

Permalink
Fix xcode-select : error : tool 'xcodebuild' requires Xcode (#102473)
Browse files Browse the repository at this point in the history
Port #100190 to internal build
scripts

Fixes #102471
  • Loading branch information
jkotas authored May 21, 2024
1 parent cbe4d84 commit 2f3234e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/tools/aot/ILCompiler/ILCompiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<Output TaskParameter="ConsoleOutput" PropertyName="_CC_LDFLAGS" />
</Exec>

<Exec Command="xcodebuild -version" Condition="'$(_IsApplePlatform)' == 'true'" IgnoreExitCode="true" StandardOutputImportance="Low" ConsoleToMSBuild="true">
<Exec Command="clang --version" Condition="'$(_IsApplePlatform)' == 'true'" IgnoreExitCode="true" StandardOutputImportance="Low" ConsoleToMSBuild="true">
<Output TaskParameter="ExitCode" PropertyName="_XcodeVersionStringExitCode" />
<Output TaskParameter="ConsoleOutput" PropertyName="_XcodeVersionString" />
</Exec>
Expand Down

0 comments on commit 2f3234e

Please sign in to comment.