diff --git a/src/coreclr/src/pal/src/misc/jitsupport.cpp b/src/coreclr/src/pal/src/misc/jitsupport.cpp index 72699e0de0f37..db9b4e2fe6b52 100644 --- a/src/coreclr/src/pal/src/misc/jitsupport.cpp +++ b/src/coreclr/src/pal/src/misc/jitsupport.cpp @@ -32,6 +32,7 @@ PAL_GetJitCpuCapabilityFlags(CORJIT_FLAGS *flags) // From a single binary distribution perspective, compiling with latest kernel asm/hwcap.h should // include all published flags. Given flags are merged to kernel and published before silicon is // available, using the latest kernel for release should be sufficient. + CPUCompileFlags.Set(InstructionSet_ArmBase); #ifdef HWCAP_AES if (hwCap & HWCAP_AES) CPUCompileFlags.Set(InstructionSet_Aes);