From 7e47e41b7518c603cd4472dbe0799a971bbff1ad Mon Sep 17 00:00:00 2001 Patch-Source: https://github.com/dotnet/installer/pull/13378 From: Antoine Martin Date: Wed, 9 Mar 2022 20:16:03 +0000 Subject: [PATCH 1/1] arm support By default, build does not support arm. This patch introduces all the logics to parse platform information. --- Directory.Build.props | 2 +- tools-local/init-build.proj | 2 +- repos/known-good.proj | 2 +- repos/runtime.common.proj | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 51f8e3c5a..698f69882 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -17,7 +17,7 @@ $([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture.ToString().ToLowerInvariant()) - $(BuildArchitecture) + $(BuildArchitecture) $(BuildArchitecture) x64 diff --git a/tools-local/init-build.proj b/tools-local/init-build.proj index c5494dedd..21b27b762 100644 --- a/tools-local/init-build.proj +++ b/tools-local/init-build.proj @@ -117,7 +117,7 @@ - + diff --git a/src/SourceBuild/tarball/content/Directory.Build.props b/src/SourceBuild/tarball/content/Directory.Build.props diff --git a/repos/known-good.proj b/repos/known-good.proj index eab516290..8254e5111 100644 --- a/repos/known-good.proj +++ b/repos/known-good.proj @@ -18,7 +18,7 @@ - + diff --git a/repos/runtime.common.props b/repos/runtime.common.props index b1e9e6adb..3939f3851 100644 --- a/repos/runtime.common.props +++ b/repos/runtime.common.props @@ -13,7 +13,7 @@ $(StandardSourceBuildArgs.Replace('-bl', '-nobl')) $(StandardSourceBuildCommand) $(BuildCommandArgs) - $(ArmEnvironmentVariables) $(StandardSourceBuildCommand) $(BuildCommandArgs) + $(ArmEnvironmentVariables) $(StandardSourceBuildCommand) $(BuildCommandArgs) $(ProjectDirectory)/clean$(ShellExtension) -- 2.35.1