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:
authorKyungwoo Lee <kyulee@microsoft.com>2016-07-08 00:42:44 +0300
committerKyungwoo Lee <kyulee@microsoft.com>2016-07-15 16:26:02 +0300
commitd93036d42ab3fcfa7a159b956fa7abce9e7749db (patch)
treea745ddd2fd1912dcf670355d78032df4f4d273e6 /src/coreclr/crosscomponents.cmake
parentb3d95aa11685796222707612b8fd64832750a5e0 (diff)
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). Commit migrated from https://github.com/dotnet/coreclr/commit/0ed4e675a303a8944ec4c99c03058b99d8ff9548
Diffstat (limited to 'src/coreclr/crosscomponents.cmake')
-rw-r--r--src/coreclr/crosscomponents.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coreclr/crosscomponents.cmake b/src/coreclr/crosscomponents.cmake
index 158173e307d..e0d5c1a9394 100644
--- a/src/coreclr/crosscomponents.cmake
+++ b/src/coreclr/crosscomponents.cmake
@@ -5,4 +5,5 @@ set (CLR_CROSS_COMPONENTS_LIST
mscordaccore
mscordbi
sos
+ clrjit
)