GSdx: Linux: Enable SSE4.2, SSE4.1 and SSE3 builds

This commit is contained in:
Jonathan Li 2015-02-12 17:49:31 +00:00
parent 9b572d2d47
commit 329953ebc3
1 changed files with 10 additions and 0 deletions

View File

@ -279,6 +279,16 @@ struct aligned_free_second {template<class T> void operator()(T& p) {_aligned_fr
#define _M_SSE 0x501
#elif defined(__AVX__)
#define _M_SSE 0x500
#elif defined(__SSE4_2__)
#define _M_SSE 0x402
#elif defined(__SSE4_1__)
#define _M_SSE 0x401
#elif defined(__SSSE3__)
#define _M_SSE 0x301
#elif defined(__SSE2__)
#define _M_SSE 0x200
#elif defined(__SSE__)
#define _M_SSE 0x100
#endif
#endif