You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/mono/mono.proj
+27-10Lines changed: 27 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@
125
125
<ErrorCondition="('$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true' or '$(TargetsMacCatalyst)' == 'true') and !$([MSBuild]::IsOSPlatform('OSX'))"Text="Error: $(TargetOS) can only be built on macOS." />
126
126
<ErrorCondition="('$(TargetsAndroid)' == 'true' or '$(TargetsLinuxBionic)' == 'true') and '$(Platform)' != 'x64' and '$(Platform)' != 'x86' and '$(Platform)' != 'arm64' and '$(Platform)' != 'arm'"Text="Error: Invalid platform for $(TargetOS): $(Platform)." />
127
127
<ErrorCondition="'$(TargetsBrowser)' == 'true' and '$(EMSDK_PATH)' == '' and '$(SkipMonoCrossJitConfigure)' != 'true'"Text="The EMSDK_PATH environment variable should be set pointing to the emscripten SDK root dir."/>
128
-
<ErrorCondition="'$(TargetsWasi)' == 'true' and '$(WASI_SDK_PATH)' == '' and '$(SkipMonoCrossJitConfigure)' != 'true'"Text="The WASI_SDK_PATH environment variable should be set pointing to the WASI SDK root dir."/>
128
+
<ErrorCondition="'$(TargetsWasi)' == 'true' and '$(WASI_SDK22_PATH)' == '' and '$(SkipMonoCrossJitConfigure)' != 'true'"Text="The WASI_SDK22_PATH environment variable should be set pointing to the WASI SDK root dir."/>
129
129
<ErrorCondition="('$(TargetsAndroid)' == 'true' or '$(TargetsLinuxBionic)' == 'true') and '$(ANDROID_NDK_ROOT)' == '' and '$(SkipMonoCrossJitConfigure)' != 'true'"Text="Error: You need to set the ANDROID_NDK_ROOT environment variable pointing to the Android NDK root." />
130
130
<ErrorCondition="'$(HostOS)' == 'windows' and ('$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true' or '$(TargetsMacCatalyst)' == 'true')"Text="Error: Mono runtime for $(TargetOS) can't be built on Windows." />
131
131
@@ -302,7 +302,7 @@ JS_ENGINES = [NODE_JS]
302
302
</PropertyGroup>
303
303
</Target>
304
304
305
-
<!-- Sets up WASI SDK if you don't have the WASI_SDK_PATH env variable set -->
305
+
<!-- Sets up WASI SDK if you don't have the WASI_SDK22_PATH env variable set -->
306
306
<TargetName="ProvisionWasiSdk"
307
307
Condition="'$(ShouldProvisionWasiSdk)' == 'true' and '$(SkipMonoCrossJitConfigure)' != 'true'">
<ErrorText="Expected version: %(_ExpectedVersionLines.Identity) and actual version: %(_ActualVersionLines.Identity) of WASI SDK does not match. Please delete $(WASI_SDK_PATH) folder to provision a new version."
359
+
<ErrorText="Expected version: %(_ExpectedVersionLines.Identity) and actual version: %(_ActualVersionLines.Identity) of WASI SDK does not match. Please delete $(WASI_SDK22_PATH) folder to provision a new version."
0 commit comments