So, I'm attempting to run the Windows toolchain un...
# kotlin-native
t
So, I'm attempting to run the Windows toolchain under Wine, which, aside from the DOS batch scripts having to be rewritten in bash, seems to work. At least for "hello world". But trying to build the bindings for a header file with cinterop, I get this error:
Copy code
nativelib-build\natives\cstubs.c:2220:21: error: always_inline function '_cvtsh_ss' requires target feature 'sse4.1', but would be inlined into function 'win32_kni__cvtsh_ss' that is compiled without support for 'sse4.1'
    return (float) (_cvtsh_ss((unsigned short)__a));
...meaning that Kotlin/Native on Windows requires SSE 4.1? It's apparently not supported on AMD processors made before 2011, like mine: http://www.cpu-world.com/Glossary/S/SSE4.1.html