From 6c952d8ac7fd57d32170492adaca9c135edd8936 Mon Sep 17 00:00:00 2001 From: Laurent Carlier Date: Sat, 16 Apr 2016 21:50:39 +0200 Subject: [PATCH] anv: fix building on i686 with -mcpu=generic mcpu=generic doesn't enable sse2, and anvil definitly needs it Reviewed-by: Jason Ekstrand --- src/intel/vulkan/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/Makefile.am b/src/intel/vulkan/Makefile.am index cba66713948..a84be729548 100644 --- a/src/intel/vulkan/Makefile.am +++ b/src/intel/vulkan/Makefile.am @@ -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 \ -- 2.11.0