Skip to content

Commit

Permalink
Merge pull request #233 from atteneder/sse4.2
Browse files Browse the repository at this point in the history
fix: Allow building SSE kernels regardless of SSE 4.2 being (in)active
  • Loading branch information
richgel999 authored Dec 19, 2021
2 parents 3755515 + 2849bbd commit 0da4c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encoder/basisu_kernels_sse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#error SSE4.1/SSE3/SSE4.2/SSSE3 cannot be enabled to use this file
#endif
#else
#if !__SSE4_1__ || !__SSE3__ || __SSE4_2__ || !__SSSE3__
#if !__SSE4_1__ || !__SSE3__ || !__SSSE3__
#error Please check your compiler options
#endif
#endif
Expand Down

0 comments on commit 0da4c11

Please sign in to comment.