Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samsung.com>2017-01-17 15:41:58 +0300
committerJan Vorlicek <janvorli@microsoft.com>2017-01-17 15:41:58 +0300
commit5f12b4d27158f487b7626f8e433eeb1af87fb2c6 (patch)
tree817d54f66f4e8cc120db25eae86bd99f2722976b /src/coreclr/crosscomponents.cmake
parent5080bdc067cb75279de273a0d80e943b344b7937 (diff)
[ARM32/Linx] cross-architecture build: restrict build project list (dotnet/coreclr#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 dotnet/coreclr#8866 and dotnet/coreclr#8917. (release build) - crossgen - clrjit - protojit * modify crosscomponents.cmake Add list items when not Linux, instead remove in Linux Commit migrated from https://github.com/dotnet/coreclr/commit/69c55380c1c611388b8c9e3668f41ed099bdd5f1
Diffstat (limited to 'src/coreclr/crosscomponents.cmake')
-rw-r--r--src/coreclr/crosscomponents.cmake21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/coreclr/crosscomponents.cmake b/src/coreclr/crosscomponents.cmake
index 7575570b36c..96c477ee343 100644
--- a/src/coreclr/crosscomponents.cmake
+++ b/src/coreclr/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()