Comment on Don't use musl if you care about performanceparentComments−fweimer14dThese builtins of course exist, it's how compilers keep track of the behavior of these functions.For GCC, there is -minline-all-stringops:https://gcc.gnu.org/onlinedocs/gcc-16.2.0/gcc/x86-Options.ht...It does what it says, but the results may not be what you expect.
Comments
These builtins of course exist, it's how compilers keep track of the behavior of these functions.
For GCC, there is -minline-all-stringops:
https://gcc.gnu.org/onlinedocs/gcc-16.2.0/gcc/x86-Options.ht...
It does what it says, but the results may not be what you expect.