Joseph Benden
Joseph Benden
Hi, Would you mind uploading the file `config.log`? I'm stumped why it thinks these two things are different sizes... Thanks, -Joe
Please post the`config.log` and `./configure` output. Also, were there any `CFLAGS` used? Thanks, -Joe
Thanks! An important observation is the compiler accepts the NEON flag, but issues a warning on it: ``` clang60++: warning: argument unused during compilation: '-mfpu=neon' [-Wunused-command-line-argument] ``` Ideally, it would...
I have committed a change that forces Clang to not report success for this test. However, I was using a very, very old version of Clang. Unfortunately, it went on...
First see if the change makes a difference, if not we'll figure out the next step.
I now know why this code does not compile; however, I do not have an idea on how to "quickly" fix it. The snippet complaining is: ``` #define vroti_epi32(x, i)...
``` #include #define vroti_epi32(x, i) \ (i < 0 ? vsliq_n_u32(vshrq_n_u32(x, 32 - i), x, i) \ : vsriq_n_u32(vshlq_n_u32(x, 32 + i), x, -i)) int main() { uint32x4_t x =...
One idea for a fix is to create each of these intrinsic instructions as inline static functions; whereby, the inner logic of each function is a giant switch statement for...
Some testing shows this idea sort of works, but requires a lot of "work-around" functions. It also severely impacts overall performance. I recommend using the generic + static aircrack-ng build,...
https://bugs.llvm.org/show_bug.cgi?id=39087