summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorSteve MacLean <sdmaclea.qdt@qualcommdatacenter.com>2018-03-30 14:56:14 -0400
committerSteve MacLean <sdmaclea.qdt@qualcommdatacenter.com>2018-03-31 16:50:29 -0400
commit8140a9d705b0332c42ea557ccb6485eadb6bcd5a (patch)
tree82c2a0b253296d9b74890e26d2e9f8d0c856d6d7 /src/tools
parent2023be14efa54af8b339d36499018a8743b32a29 (diff)
downloadcoreclr-8140a9d705b0332c42ea557ccb6485eadb6bcd5a.tar.gz
coreclr-8140a9d705b0332c42ea557ccb6485eadb6bcd5a.tar.bz2
coreclr-8140a9d705b0332c42ea557ccb6485eadb6bcd5a.zip
[Arm64] Add x64_arm64 crossgen to tools package
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/crossgen/crossgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/crossgen/crossgen.cpp b/src/tools/crossgen/crossgen.cpp
index 2c7f76e4f5..345de53d1b 100644
--- a/src/tools/crossgen/crossgen.cpp
+++ b/src/tools/crossgen/crossgen.cpp
@@ -834,10 +834,10 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
bool fCompilingMscorlib = StringEndsWith((LPWSTR)pwzFilename, CoreLibName_IL_W);
// Disable fragile NGen when compiling Mscorlib for ARM.
-#ifndef _TARGET_ARM_
+#if !(defined(_TARGET_ARM_) || defined(_TARGET_ARM64_))
if (fCompilingMscorlib)
dwFlags &= ~NGENWORKER_FLAGS_READYTORUN;
-#endif // _TARGET_ARM_
+#endif // !(_TARGET_ARM_ || _TARGET_ARM64_)
if(pwzPlatformAssembliesPaths != nullptr)
{