SSE4
SSE4
HI again @FOXNEOAdvancedTechnology , could you possibly tell me what is the origin of the pcap file you have provided - is it from some real hardware capture device or...
I think it deserver some better looking identifier than `__version__`.
there are at least several things here. 1. allow `DESTDIR` to be configurable. I believe it's completely impossible right now, as `CMake.install` method doesn't accept any custom args. that would...
for 1, global solution depends on local one. `DESTDIR` has to be implemented for the CMake helper first. for 2, generic solution is possible. basically, it's to join `prefix` in...
> The problem with this is that is very likely that users will start requesting immediately some kind of binary compatibility between both, because it is basically the same compiler,...
> Where can I find this tests? I have tried locally and both clang from msvc and clang-cl from choco-llvm failed for me as I can see, there is one...
`using gcc runtime` not an expert in this one. I have the following options in MSYS to install: ``` mingw32/mingw-w64-i686-clang 13.0.1-3 C language family frontend for LLVM (mingw-w64) mingw64/mingw-w64-x86_64-clang 13.0.1-3...
> I have installed clang, using 'choco install llvm' that's probably the one from llvm.org. I installed one from Visual Studio itself.
might be a helpful link: https://www.msys2.org/docs/environments/ 1. MSYS `CLANG64` environment `clang --version` ``` $ clang --version clang version 13.0.1 Target: x86_64-w64-windows-gnu Thread model: posix InstalledDir: C:/msys64/clang64/bin ``` `ldd ` ```...
I don't think MSYS and MSVC targets are fully compatible, as MSYS has its own sets of defines such as `__CYGWIN__` and `__MSYS__`: https://github.com/msys2/MSYS2-packages/blob/master/clang/0108-Add-minimal-msys-target.patch#L137-L159 (also check other patches) and for...