From 69c55380c1c611388b8c9e3668f41ed099bdd5f1 Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Tue, 17 Jan 2017 21:41:58 +0900 Subject: [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 --- crosscomponents.cmake | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'crosscomponents.cmake') 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() -- cgit v1.2.3