diff options
author | Hyeongseok Oh <hseok82.oh@samsung.com> | 2016-12-23 22:18:32 +0900 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2016-12-23 14:18:32 +0100 |
commit | 5ef3df8ffe059d5f91c6bae09d8f95a0332f1363 (patch) | |
tree | ca1984151b6f044658d0302f48b6cfecb3521edf /functions.cmake | |
parent | 55ea631f84ba1e9084f12b95a43135b526169cd9 (diff) | |
download | coreclr-5ef3df8ffe059d5f91c6bae09d8f95a0332f1363.tar.gz coreclr-5ef3df8ffe059d5f91c6bae09d8f95a0332f1363.tar.bz2 coreclr-5ef3df8ffe059d5f91c6bae09d8f95a0332f1363.zip |
[Linux] Fix cross-architecture component build configuration for ARM32-target (#8687)
* fix CMakeLists.txt for palrt
* Modify CMakeLists.txt for cross-architecture component configuaration
Add coreclrpal project to fix a dependency issue when CMake configuration
* Allow only x64-host/arm-target for linux
allow x64-host/arm-target only, because pal is not stable for x86 now
* Update build.sh
delete NumProc=1 (inserted for debugging)
* Change x64-host to x86-host for arm-target
JIT correctness problem,
and fix CMake configuration for x86 in pal
* Fix type
* Update CMakeLists.txt
* fix style
* Set x86 when arm-target/x64-host
* fix typo
Diffstat (limited to 'functions.cmake')
-rw-r--r-- | functions.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.cmake b/functions.cmake index e1a9abb469..f2c52daf5e 100644 --- a/functions.cmake +++ b/functions.cmake @@ -2,7 +2,7 @@ function(clr_unknown_arch) if (WIN32) message(FATAL_ERROR "Only AMD64, ARM64, ARM and I386 are supported") elseif(CLR_CROSS_COMPONENTS_BUILD) - message(FATAL_ERROR "Only AMD64, I386 are supported for cross-architecture component") + message(FATAL_ERROR "Only AMD64, I386 host are supported for linux cross-architecture component") else() message(FATAL_ERROR "Only AMD64, ARM64 and ARM are supported") endif() |