I'm trying to work through this C coding exercise, but I want to do so in Zig.
In the exercise they #import <nmmintrin.h>
(@~18:15) to use __builtin_popcount
. From a brief search it looks like this is a gcc-specific header file? Not sure what compiler they're using, but IIUC Zig compiles C code via clang/LLVM != gcc/GNU, right? =_=
How do I use this header from Zig? Are gcc headers supported?