From: Jonghyun Park Date: Fri, 24 Feb 2017 02:01:10 +0000 (+0900) Subject: [x86/Linux] Enable FEATURE_ARRAYSTUB_AS_IL (dotnet/coreclr#9752) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7977 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7c097236589f485cba12b81f2da7b264f4a420f;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [x86/Linux] Enable FEATURE_ARRAYSTUB_AS_IL (dotnet/coreclr#9752) * [x86/Linux] Enable FEATURE_ARRAYSTUB_AS_IL * Move FeatureStubsAsIL into Windows-specific block Commit migrated from https://github.com/dotnet/coreclr/commit/70b21c84b90aa2c37bb7366ea175f59a03512ae4 --- diff --git a/src/coreclr/clr.coreclr.props b/src/coreclr/clr.coreclr.props index 9211976..a9b5191 100644 --- a/src/coreclr/clr.coreclr.props +++ b/src/coreclr/clr.coreclr.props @@ -5,8 +5,6 @@ true true true - true - true true true false @@ -67,6 +65,7 @@ true true + true true @@ -83,6 +82,8 @@ + true + true true true diff --git a/src/coreclr/clrdefinitions.cmake b/src/coreclr/clrdefinitions.cmake index 38d1b7d..4845b8f 100644 --- a/src/coreclr/clrdefinitions.cmake +++ b/src/coreclr/clrdefinitions.cmake @@ -91,11 +91,13 @@ endif(WIN32) add_definitions(-DFEATURE_APPDOMAIN_RESOURCE_MONITORING) if(WIN32) - add_definitions(-DFEATURE_APPX) -endif(WIN32) -if(CLR_CMAKE_TARGET_ARCH_AMD64 OR CLR_CMAKE_TARGET_ARCH_ARM OR CLR_CMAKE_TARGET_ARCH_ARM64) + add_definitions(-DFEATURE_APPX) + if(CLR_CMAKE_TARGET_ARCH_AMD64 OR CLR_CMAKE_TARGET_ARCH_ARM OR CLR_CMAKE_TARGET_ARCH_ARM64) add_definitions(-DFEATURE_ARRAYSTUB_AS_IL) -endif() + endif() +else(WIN32) + add_definitions(-DFEATURE_ARRAYSTUB_AS_IL) +endif(WIN32) add_definitions(-DFEATURE_COLLECTIBLE_TYPES)