Skip to content

Commit

Permalink
Merge pull request #9253 from prusnak/patch-1
Browse files Browse the repository at this point in the history
Fix build on macOS arm64
  • Loading branch information
ev-mp committed Aug 2, 2021
2 parents 518f053 + beb4c44 commit de97143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proc/color-formats-converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <tmmintrin.h> // For SSSE3 intrinsics
#endif

#if defined (ANDROID) || (defined (__linux__) && !defined (__x86_64__))
#if defined (ANDROID) || (defined (__linux__) && !defined (__x86_64__)) || (defined (__APPLE__) && !defined (__x86_64__))

bool has_avx() { return false; }

Expand Down

0 comments on commit de97143

Please sign in to comment.