Permalink
Browse files

[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
  • Loading branch information...
1 parent bc63a8b commit 69c55380c1c611388b8c9e3668f41ed099bdd5f1 @hseok-oh hseok-oh committed with janvorli Jan 17, 2017
Showing with 13 additions and 8 deletions.
  1. +13 −8 crosscomponents.cmake
View
@@ -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()

0 comments on commit 69c5538

Please sign in to comment.