From 6927fea7b4bca1dc2cea7a0afba0373c1303cedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Strehovsk=C3=BD?= Date: Fri, 14 Jun 2024 00:07:36 +0900 Subject: [PATCH] Try fixing x86 Windows legs (#103411) I think we had a bad interaction between #103332 and #103273. Windows x86 with native AOT got broken in Preview 5 (https://github.com/dotnet/runtime/issues/86573#issuecomment-2162080904). --- eng/Subsets.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Subsets.props b/eng/Subsets.props index 4b6ed2c550ee8..20c449b02cd4a 100644 --- a/eng/Subsets.props +++ b/eng/Subsets.props @@ -122,7 +122,7 @@ <_NativeAotSupportedOS Condition="'$(TargetOS)' == 'windows' or '$(TargetOS)' == 'linux' or '$(TargetOS)' == 'osx' or '$(TargetOS)' == 'maccatalyst' or '$(TargetOS)' == 'iossimulator' or '$(TargetOS)' == 'ios' or '$(TargetOS)' == 'tvossimulator' or '$(TargetOS)' == 'tvos' or '$(TargetOS)' == 'freebsd'">true <_NativeAotSupportedArch Condition="'$(TargetArchitecture)' == 'x64' or '$(TargetArchitecture)' == 'arm64' or '$(TargetArchitecture)' == 'arm' or ('$(TargetOS)' == 'windows' and '$(TargetArchitecture)' == 'x86')">true true - true + true true