android: pass sse4.1 flag as appropriate

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 <kalyan.kondapally@intel.com>
Signed-off-by: Harish Krupo <harish.krupo.kps@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
This commit is contained in:
Harish Krupo 2017-03-29 04:08:12 +09:30 committed by Tapani Pälli
parent a930c2c612
commit 36cb2003f1

View file

@ -33,6 +33,9 @@ LOCAL_MODULE := libmesa_sse41
LOCAL_SRC_FILES += \ LOCAL_SRC_FILES += \
$(X86_SSE41_FILES) $(X86_SSE41_FILES)
LOCAL_CFLAGS := \
-msse4.1
LOCAL_C_INCLUDES := \ LOCAL_C_INCLUDES := \
$(MESA_TOP)/src/mapi \ $(MESA_TOP)/src/mapi \
$(MESA_TOP)/src/gallium/include \ $(MESA_TOP)/src/gallium/include \