anv: fix building on i686 with -mcpu=generic

mcpu=generic doesn't enable sse2, and anvil definitly needs it

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Laurent Carlier 2016-04-16 21:50:39 +02:00 committed by Jason Ekstrand
parent 2ef7aef322
commit 6c952d8ac7

View file

@ -67,7 +67,7 @@ AM_CPPFLAGS = \
-I$(top_builddir)/src/compiler/nir \
-I$(top_builddir)/src/intel
libvulkan_intel_la_CFLAGS = $(CFLAGS) -Wno-override-init
libvulkan_intel_la_CFLAGS = $(CFLAGS) -Wno-override-init -msse2
VULKAN_SOURCES = \
anv_allocator.c \