summaryrefslogtreecommitdiff
path: root/clr.coreclr.props
diff options
context:
space:
mode:
authorMyungJoo Ham <myungjoo.ham@samsung.com>2016-04-29 19:38:58 +0900
committerMyungJoo Ham <myungjoo.ham@samsung.com>2016-04-29 19:38:58 +0900
commit762162705bd9a11c82233b7162f5fee15d8ab548 (patch)
treefbe6580924bac92765f8ea2135ada58aed948224 /clr.coreclr.props
parent617e1311f42be82fcf3a1a9f6e9218cfaa1de8bf (diff)
downloadcoreclr-762162705bd9a11c82233b7162f5fee15d8ab548.tar.gz
coreclr-762162705bd9a11c82233b7162f5fee15d8ab548.tar.bz2
coreclr-762162705bd9a11c82233b7162f5fee15d8ab548.zip
ARM Enable MulticoreJIT for mscorlib.dll build
The native parts of CoreCLR has kept FEATURE_MULTICOREJIT for ARM devices from the beginning while MSCORLIB.DLL's build scripts has kept it disabled for ARM. Because many ARM devices are multicore and the native part is using FEATURE_MULTICOREJIT anyway, in order to remove the inconsistency, we enable FEATURE_MULTICOREJIT for mscorlib build as well. Fix #4682 part 2. Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Diffstat (limited to 'clr.coreclr.props')
-rw-r--r--clr.coreclr.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/clr.coreclr.props b/clr.coreclr.props
index 7e9099faec..5f10d70384 100644
--- a/clr.coreclr.props
+++ b/clr.coreclr.props
@@ -31,7 +31,7 @@
<FeatureMainClrModuleUsesCoreName>true</FeatureMainClrModuleUsesCoreName>
<FeatureMergeCultureSupportAndEngine>true</FeatureMergeCultureSupportAndEngine>
<FeatureMergeJitAndEngine>true</FeatureMergeJitAndEngine>
- <FeatureMulticoreJIT Condition="'$(TargetArch)'!='arm'">true</FeatureMulticoreJIT>
+ <FeatureMulticoreJIT>true</FeatureMulticoreJIT>
<FeatureNormIdnaOnly>true</FeatureNormIdnaOnly>
<FeaturePrejit>true</FeaturePrejit>
<FeatureStandaloneSn>true</FeatureStandaloneSn>