mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
gallium: GCC 4.9 allows to include tmmintrin.h without -msse3.
Fixes build with MinGW x86_64 build with GCC 4.9, due to conflicting definition _mm_shuffle_epi8 of u_sse.h and system headers. Trivial.
This commit is contained in:
parent
512aa0647f
commit
eb643db30e
1 changed files with 2 additions and 2 deletions
|
|
@ -100,8 +100,8 @@
|
|||
#else
|
||||
#define PIPE_ARCH_SSE
|
||||
#endif
|
||||
#if defined(PIPE_CC_GCC) && !defined(__SSSE3__)
|
||||
/* #warning SSE3 support requires -msse3 compiler options */
|
||||
#if defined(PIPE_CC_GCC) && (__GNUC__ * 100 + __GNUC_MINOR__) < 409 && !defined(__SSSE3__)
|
||||
/* #warning SSE3 support requires -msse3 compiler options before GCC 4.9 */
|
||||
#else
|
||||
#define PIPE_ARCH_SSSE3
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue