Skip to content

Commit

Permalink
Update src/coreclr/nativeaot/BuildIntegration/Microsoft.NETCore.Nativ…
Browse files Browse the repository at this point in the history
…e.targets

Co-authored-by: SingleAccretion <62474226+SingleAccretion@users.noreply.github.com>
  • Loading branch information
dicej and SingleAccretion committed May 30, 2024
1 parent 346c3b0 commit 4b122dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ The .NET Foundation licenses this file to you under the MIT license.
<Error Text="Wasi SDK not found, not compiling to WebAssembly. To enable WebAssembly compilation, install Wasi SDK and ensure the WASI_SDK_PATH environment variable points to the directory containing share/wasi-sysroot"
Condition="'$(WASI_SDK_PATH)' == '' and '$(_targetOS)' == 'wasi'" />
<Warning Text="The WASI SDK version is too low. Please use WASI SDK 22 or newer with a 64 bit Clang."
Condition="!Exists('$(WASI_SDK_PATH)/VERSION')" />
Condition="'$(WASI_SDK_PATH)' != '' and '$(_targetOS)' == 'wasi' and !Exists('$(WASI_SDK_PATH)/VERSION')" />
</Target>

<Target Name="CompileWasmObjects"
Expand Down

0 comments on commit 4b122dd

Please sign in to comment.