Permalink
Please sign in to comment.
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,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