Evan Nemerson
Evan Nemerson
I'd much rather fix it than disable it quietly… not buffering stderr is a pretty big drawback. That said, I can't think of a decent way to make it work...
> /gvectest/gvt1_general Error: unable to create buffer for stderr: Permission denied (13) Well that's interesting… `tmpfile()` (or `tmpfile_s()`, if `_WIN32` is defined but `__MINGW32__` isn't) failed. Are you running as...
I managed to reproduce the original issue with mingw on AppVeyor, so I can work on fixing it soon. That function is in pretty dire need of a clean-up, and...
It's not as simple as changing from .org to .com, unfortunately. I would have to contact them about providing some credits to zero out the balance for my account, and...
I'm willing to add this, but the implementation needs some work first. First, I think the API should just zero the memory instead of set it to an arbitrary value....
IIRC x86intrin.h isn't really standard; probably better to use `immintrin.h` (as https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=rotl&expand=4431 specifies)… that way at least we can stick to architecture-specific ifdefs instead of also having to check the...
Ugh. I'm pretty sure x86intrin.h isn't available on MSVC, probably other compilers as well. I guess we'll have to add checks on `__GNUC__` and `__INTEL_COMPILER`.
Sure, but it means it will take some time to develop. Unfortunately it's not just a matter of choosing the right file name, we also have to figure out when...
I guess inline assembly for x86 on compilers other than GCC and MSVC would be best… clang supports ACLE so for ARM on clang we can use `__ror` from ACLE...
Mind if I re-purpose this issue to apply to all the MSVC intrinsics? There are a bunch of other functions which would benefit from the same analysis… for example, implementing...