summaryrefslogtreecommitdiff
path: root/src/tools/crossgen/crossgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/crossgen/crossgen.cpp')
-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)
{