aboutsummaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorRob Herring <[email protected]>2016-06-13 13:45:53 -0500
committerMark Janes <[email protected]>2016-06-28 12:48:46 -0700
commit789ed13284cb99b96f2aa69f237959b27c5c3bc2 (patch)
tree4e05fa23fb834e5604c825951eb88d7b8e0c1a22 /src/intel
parent6397c12f32431616555c8de29ee40aac51e69401 (diff)
Android: add missing u_math.h include path for libmesa_isl
Commit 87d062a94080 ("i965: Fix shared local memory size for Gen9+.") added u_math.h include which broke the Android build: In file included from external/mesa3d/src/intel/isl/isl_storage_image.c:25: In file included from external/mesa3d/src/mesa/drivers/dri/i965/brw_compiler.h:29: external/mesa3d/src/mesa/main/macros.h:35:10: fatal error: 'util/u_math.h' file not found ^ Add the missing include paths for libmesa_isl. Signed-off-by: Rob Herring <[email protected]> Reviewed-by: Kenneth Garunke <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/isl/Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/isl/Android.mk b/src/intel/isl/Android.mk
index ff0c8c9f307..c828c5cd6bf 100644
--- a/src/intel/isl/Android.mk
+++ b/src/intel/isl/Android.mk
@@ -116,6 +116,8 @@ LOCAL_MODULE := libmesa_isl
LOCAL_SRC_FILES := $(ISL_FILES)
LOCAL_C_INCLUDES := \
+ $(MESA_TOP)/src/gallium/include \
+ $(MESA_TOP)/src/gallium/auxiliary \
$(MESA_TOP)/src/mapi \
$(MESA_TOP)/src/mesa \
$(MESA_TOP)/src/mesa/drivers/dri/i965 \