You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
I'm facing the same error.
My solution was to modify the util.h file: #ifndef USE_POPCNT
extern uint8_t PopCnt16[1 << 16];
union {
uint64_t bb;
uint16_t u[4];
} v = { b };
return PopCnt16[v.u[0]] + PopCnt16[v.u[1]] + PopCnt16[v.u[2]] + PopCnt16[v.u[3]];
#elif defined(_MSC_VER) || defined(__INTEL_COMPILER)
After that I was able to compile running make build ARCH=x86-64
make build ARCH=x86-64
I tried the above but it returns
undefined reference to `PopCnt16'
The text was updated successfully, but these errors were encountered: