Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/native/minipal/cpufeatures.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,8 @@ int minipal_getcpufeatures(void)
#ifdef HWCAP_LRCPC
if (hwCap & HWCAP_LRCPC)
result |= ARM64IntrinsicConstants_Rcpc;
#else
#error No HWCAP_LRCPC
#endif
#ifdef HWCAP_PMULL
// if (hwCap & HWCAP_PMULL)
Expand Down Expand Up @@ -445,6 +447,8 @@ int minipal_getcpufeatures(void)

#else // !HAVE_AUXV_HWCAP_H

#error No HAVE_AUXV_HWCAP_H

#if HAVE_SYSCTLBYNAME
int64_t valueFromSysctl = 0;
size_t sz = sizeof(valueFromSysctl);
Expand Down