From 36cb2003f12bf5c115eb8bca188008d12b789a0c Mon Sep 17 00:00:00 2001 From: Harish Krupo Date: Wed, 29 Mar 2017 04:08:12 +0930 Subject: [PATCH] android: pass sse4.1 flag as appropriate MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We have functions which depend on sse4.1 support but we didnt pass the right compile flag for it. This patch fixes it. Signed-off-by: Kalyan Kondapally Signed-off-by: Harish Krupo Reviewed-by: Tapani Pälli --- src/mesa/Android.libmesa_sse41.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mesa/Android.libmesa_sse41.mk b/src/mesa/Android.libmesa_sse41.mk index 8562da60193..da40f43df69 100644 --- a/src/mesa/Android.libmesa_sse41.mk +++ b/src/mesa/Android.libmesa_sse41.mk @@ -33,6 +33,9 @@ LOCAL_MODULE := libmesa_sse41 LOCAL_SRC_FILES += \ $(X86_SSE41_FILES) +LOCAL_CFLAGS := \ + -msse4.1 + LOCAL_C_INCLUDES := \ $(MESA_TOP)/src/mapi \ $(MESA_TOP)/src/gallium/include \ -- 2.30.2