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
path: root/eng
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-09-06 12:19:22 +0300
committerGitHub <noreply@github.com>2022-09-06 12:19:22 +0300
commit3cb7fe74aa2d5ec2c67b44f28a03a2c04a4458a0 (patch)
tree2c609a9da8127ae792c667561bf08f4569873923 /eng
parentce7e86468f5c3d21d9370ebdde110a532534a9ad (diff)
[release/7.0] Don't try to build PGO tools on platforms with no CoreCLR port. (#75003)
Co-authored-by: Jo Shields <directhex@apebox.org>
Diffstat (limited to 'eng')
-rw-r--r--eng/Subsets.props3
1 files changed, 2 insertions, 1 deletions
diff --git a/eng/Subsets.props b/eng/Subsets.props
index 08a9d5dfaef..cd5f39ef638 100644
--- a/eng/Subsets.props
+++ b/eng/Subsets.props
@@ -61,7 +61,8 @@
<DefaultMonoSubsets Condition="'$(MonoAOTEnableLLVM)' == 'true' and '$(MonoAOTLLVMDir)' == ''">mono.llvm+</DefaultMonoSubsets>
<DefaultMonoSubsets Condition="'$(TargetOS)' == 'Browser'">$(DefaultMonoSubsets)mono.wasmruntime+</DefaultMonoSubsets>
<DefaultMonoSubsets Condition="'$(MonoCrossAOTTargetOS)' != ''">$(DefaultMonoSubsets)mono.aotcross+</DefaultMonoSubsets>
- <DefaultMonoSubsets>$(DefaultMonoSubsets)mono.runtime+mono.corelib+mono.packages+mono.tools+</DefaultMonoSubsets>
+ <DefaultMonoSubsets>$(DefaultMonoSubsets)mono.runtime+mono.corelib+mono.packages+</DefaultMonoSubsets>
+ <DefaultMonoSubsets Condition="'$(PrimaryRuntimeFlavor)' != 'Mono'">$(DefaultMonoSubsets)mono.tools+</DefaultMonoSubsets>
<DefaultMonoSubsets Condition="'$(TargetsMobile)' != 'true'">$(DefaultMonoSubsets)host.native+</DefaultMonoSubsets>
<DefaultLibrariesSubsets Condition="'$(BuildTargetFramework)' == '$(NetCoreAppCurrent)' or