mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 11:30:11 +01:00
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 <tobias.johannes.klausmann@mni.thm.de> Acked-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
c7af6d2690
commit
6b05c080f2
1 changed files with 2 additions and 1 deletions
|
|
@ -42,7 +42,8 @@ AM_CFLAGS = \
|
||||||
$(DEFINES) \
|
$(DEFINES) \
|
||||||
$(VISIBILITY_CFLAGS) \
|
$(VISIBILITY_CFLAGS) \
|
||||||
$(LIBDRM_CFLAGS) \
|
$(LIBDRM_CFLAGS) \
|
||||||
$(VALGRIND_CFLAGS)
|
$(VALGRIND_CFLAGS) \
|
||||||
|
-msse3
|
||||||
|
|
||||||
AM_CXXFLAGS = $(AM_CFLAGS)
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue