diff options
author | Hyeongseok Oh <hseok82.oh@samsung.com> | 2017-01-17 21:41:58 +0900 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2017-01-17 13:41:58 +0100 |
commit | 69c55380c1c611388b8c9e3668f41ed099bdd5f1 (patch) | |
tree | 0ea669f69bec888463cdc13de727190a904a11fe /crosscomponents.cmake | |
parent | bc63a8b9a7e899c2ed46e0fad8ec4564faefb8c1 (diff) | |
download | coreclr-69c55380c1c611388b8c9e3668f41ed099bdd5f1.tar.gz coreclr-69c55380c1c611388b8c9e3668f41ed099bdd5f1.tar.bz2 coreclr-69c55380c1c611388b8c9e3668f41ed099bdd5f1.zip |
[ARM32/Linx] cross-architecture build: restrict build project list (#8918)
* [ARM32/Linx] cross-architecture build: restrict build project list
Restrict build project for ARM32/Linux cross-architecture
We can build these projects with PR #8866 and #8917. (release build)
- crossgen
- clrjit
- protojit
* modify crosscomponents.cmake
Add list items when not Linux, instead remove in Linux
Diffstat (limited to 'crosscomponents.cmake')
-rw-r--r-- | crosscomponents.cmake | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/crosscomponents.cmake b/crosscomponents.cmake index 7575570b36..96c477ee34 100644 --- a/crosscomponents.cmake +++ b/crosscomponents.cmake @@ -1,10 +1,15 @@ add_definitions(-DCROSS_COMPILE) -set (CLR_CROSS_COMPONENTS_LIST - crossgen - mscordaccore - mscordbi - sos - clrjit - protojit -) +set (CLR_CROSS_COMPONENTS_LIST + crossgen + clrjit + protojit +) + +if(NOT CLR_CMAKE_PLATFORM_LINUX) + list (APPEND CLR_CROSS_COMPONENTS_LIST + mscordaccore + mscordbi + sos + ) +endif() |