wxHexEditor icon indicating copy to clipboard operation
wxHexEditor copied to clipboard

fix problem with __m128i undefined on ARM

Open franko opened this issue 1 year ago • 1 comments

There is a constant REG_SZ, see file modification, that is used conditionally only when SSE2 is defined but the variable REG_SZ is defined unconditionally.

This problem cause the compilation to fail on ARM64 architecture.

I added ifdef guards based on SSE2 like for the rest of the code. It compiles on macOS on ARM64 architecture.

franko avatar Jun 27 '24 16:06 franko

This also fixed building issues in i586

willysr avatar Sep 29 '24 02:09 willysr