diff options
author | Matt Turner <[email protected]> | 2017-07-06 21:31:05 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-07-14 16:54:43 -0700 |
commit | 6b05c080f202c25531f59b547d5e6ba339cedd09 (patch) | |
tree | 185d58f613b1c034335588dad9b87eed0434f2da | |
parent | c7af6d2690386f89993cadb6aabd92b74556ad6a (diff) |
i965: Compile with -msse3
All CPUs that can be paired with a GPU supported by i965_dri.so supports
SSE3. This allows us to ensure that some vectorized version of the tiled
memcpy path is enabled on 32-bit systems.
This also ensures that __builtin_ia32_clflush is always usable.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101774
Tested-by: Tobias Klausmann <[email protected]>
Acked-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index ecc1e766f11..9293820c217 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -42,7 +42,8 @@ AM_CFLAGS = \ $(DEFINES) \ $(VISIBILITY_CFLAGS) \ $(LIBDRM_CFLAGS) \ - $(VALGRIND_CFLAGS) + $(VALGRIND_CFLAGS) \ + -msse3 AM_CXXFLAGS = $(AM_CFLAGS) |