summaryrefslogtreecommitdiff
path: root/clr.coreclr.props
diff options
context:
space:
mode:
authorMyungJoo Ham <myungjoo.ham@gmail.com>2016-04-29 14:15:19 +0900
committerJan Kotas <jkotas@microsoft.com>2016-04-28 22:15:19 -0700
commiteef33308b1e6d6bef2eb98d9e72a41d0e5584b61 (patch)
tree4647ca5753e447fdfbaffc48b5da05b8b0fa7e3c /clr.coreclr.props
parent4d360446f70d3fb72ff4f04e8119416e61678f81 (diff)
downloadcoreclr-eef33308b1e6d6bef2eb98d9e72a41d0e5584b61.tar.gz
coreclr-eef33308b1e6d6bef2eb98d9e72a41d0e5584b61.tar.bz2
coreclr-eef33308b1e6d6bef2eb98d9e72a41d0e5584b61.zip
ARM: Fix compiler definition inconsistency (#4673)
Fix the following inconsistency CoreCLR-Native @ Linux/ARM: FEATURE_STUBS_AS_IL not defined CoreCLR-Managed @ Linux/ARM: FEATURE_STUBS_AS_IL defined This _partially_ fixes #3635 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..f7762d2cfa 100644
--- a/clr.coreclr.props
+++ b/clr.coreclr.props
@@ -88,7 +88,7 @@
<FeaturePal>true</FeaturePal>
<FeatureXplatEventSource>true</FeatureXplatEventSource>
- <FeatureStubsAsIL>true</FeatureStubsAsIL>
+ <FeatureStubsAsIL Condition="'$(TargetArch)' != 'arm'">true</FeatureStubsAsIL>
<!-- Windows specific features -->
<FeatureWin32Registry>false</FeatureWin32Registry>