summaryrefslogtreecommitdiff
path: root/crosscomponents.cmake
diff options
context:
space:
mode:
authorKyungwoo Lee <kyulee@microsoft.com>2016-07-07 14:42:44 -0700
committerKyungwoo Lee <kyulee@microsoft.com>2016-07-15 06:26:02 -0700
commit0ed4e675a303a8944ec4c99c03058b99d8ff9548 (patch)
tree255a994406843546a8e3acea9cc5c39bda1269cc /crosscomponents.cmake
parent59b0355f4f4308c34610ded81f4d00fe3070d0ee (diff)
downloadcoreclr-0ed4e675a303a8944ec4c99c03058b99d8ff9548.tar.gz
coreclr-0ed4e675a303a8944ec4c99c03058b99d8ff9548.tar.bz2
coreclr-0ed4e675a303a8944ec4c99c03058b99d8ff9548.zip
ARM64: Cross-Target Jit
Fixes https://github.com/dotnet/coreclr/issues/6279 Fixes https://github.com/dotnet/coreclr/issues/6280 - This builds x64_arm64 clrjit.dll - crossgen is not statically linked to jit anymore. It needs clrjit.dll dynamically - Adding this cross-component binary into Jit pacakge. So, clrjit.dll (native-target) is consumed by coreclr or crossgen (native-target) clrjit.dll (cross-target) is consumed by crossgen (cross-target). Likewise, later this cross-target clrjit.dll can be used for corert targeting arm64 so that we can generate arm64 code on host machine (x64).
Diffstat (limited to 'crosscomponents.cmake')
-rw-r--r--crosscomponents.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/crosscomponents.cmake b/crosscomponents.cmake
index 158173e307..e0d5c1a939 100644
--- a/crosscomponents.cmake
+++ b/crosscomponents.cmake
@@ -5,4 +5,5 @@ set (CLR_CROSS_COMPONENTS_LIST
mscordaccore
mscordbi
sos
+ clrjit
)