GSI
GSI
> saw cmovz command `(gdb) layout asm` gives this (scrollable) view: ``` ┌───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐ >│0x1a0f09ea movsd 0x1e8(%esp),%xmm0 │ │0x1a0f09f3 mov %esp,%eax │ │0x1a0f09f5 movsd %xmm0,0x4(%eax) │ │0x1a0f09fa lea 0x118(%esp),%ecx │ │0x1a0f0a01...
I generally see less lines with `layout asm` with the `-march-i386`-build, but it results in the same issue ("movsd"). > `movsd` is SSE command. I wonder where it comes from....
I can confirm your findings. Also, I found that the error goes away even if I do not provide any `march=` at all, meaning that `-DWITH_AESNI=OFF` is enough to get...
Another interesting thing I did not expect, but just came to my mind was this check: ``` # diff i2pd-i586-noaesni i2pd-noaesni && echo same same ``` In any case, I'm...