Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Shields <directhex@apebox.org>2022-01-25 00:29:57 +0300
committerGitHub <noreply@github.com>2022-01-25 00:29:57 +0300
commitdf69293bdbe75bf5903583c472fcd257119dbda4 (patch)
tree92c11c146ada65822ce759ec83d0285c47d5a2bf /eng/Subsets.props
parentae755ab3c7f838f7dccd2a4c2d5934a9d7d82c69 (diff)
Port Mono to Raspberry Pi, ship as new linux-armv6 RID (#62594)
* Initial ARMv6 arch addition. Builds mono runtime, not CoreCLR (Mono already supports the CPU arch subset used by Raspberry Pi, whilst porting CoreCLR to e.g. VFPv2 would be major work) * Build small clr subset on ARMv6, it's needed for SDK and we want to check it works
Diffstat (limited to 'eng/Subsets.props')
-rw-r--r--eng/Subsets.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/Subsets.props b/eng/Subsets.props
index 5ce54174451..fbe6f971268 100644
--- a/eng/Subsets.props
+++ b/eng/Subsets.props
@@ -27,7 +27,7 @@
flavor is used to decide when to build the hosts and installers. -->
<PropertyGroup>
<PrimaryRuntimeFlavor>CoreCLR</PrimaryRuntimeFlavor>
- <PrimaryRuntimeFlavor Condition="'$(TargetArchitecture)' == 's390x'">Mono</PrimaryRuntimeFlavor>
+ <PrimaryRuntimeFlavor Condition="'$(TargetArchitecture)' == 's390x' or '$(TargetArchitecture)' == 'armv6'">Mono</PrimaryRuntimeFlavor>
</PropertyGroup>
<PropertyGroup>