mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:43:01 +00:00
![]() GCC and Clang need to mark functions that use SSE/AVX etc, either with a function attribute or a pragma around the function. strlen uses a template function that either uses SSE2 or AVX2. Previously the template was surrounded with pragmas to allow both SSE2 and AVX2, but that makes GCC assume that it can use AVX2 instructions even in the SSE2 version. To fix this the template instances are now build in individual compilation units for SSE2 and AVX, separate from the "dispatcher" function. Now ucrtbase doesn't crash anymore on GCC build. Another issue was the namespace around strnlen_mode, which has confused clang so much, that it forgot to instantiate the template code. |
||
---|---|---|
.. | ||
conio | ||
convert | ||
dll | ||
env | ||
exec | ||
fenv | ||
filesystem | ||
float | ||
heap | ||
inc | ||
initializers | ||
internal | ||
locale | ||
lowio | ||
math | ||
mbstring | ||
misc | ||
startup | ||
stdio | ||
stdlib | ||
string | ||
time | ||
CMakeLists.txt |