lemire / streamvbyte

Fast integer compression in C using the StreamVByte codec
Apache License 2.0
376 stars 37 forks source link

Fix build on clang-cl 15.0 #50

Closed aras-p closed 1 year ago

aras-p commented 1 year ago

For me at least in VS2022 16.4, when using clang-cl (15.0), it does not build since some SSE3 or SSE4 intrinsics are being compiled, without including the headers that define them.

lemire commented 1 year ago

@aras-p Yep. That is the strange fix that we have been using in other projects. I will add CI tests for clang-cl.

Thanks!!!

lemire commented 1 year ago

Merging.