Skip to content

Commit

Permalink
[ARM32/Linx] cross-architecture build: restrict build project list (d…
Browse files Browse the repository at this point in the history
…otnet#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#8866 and dotnet#8917. (release build)
- crossgen
- clrjit
- protojit

* modify crosscomponents.cmake

Add list items when not Linux, instead remove in Linux
  • Loading branch information
hseok-oh authored and janvorli committed Jan 17, 2017
1 parent bc63a8b commit 69c5538
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions crosscomponents.cmake
Original file line number Diff line number Diff line change
@@ -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.