i965: fix Android build

Use $(TARGET_CC) instead of $(CC).  Correctly name and set LOCAL_CFLAGS.

Reviewed-by: Chad Versace <chad@chad-versace.us>
This commit is contained in:
Chia-I Wu
2011-08-31 12:31:59 +08:00
parent 488fe51cf8
commit 05fdb44dd7
2 changed files with 8 additions and 4 deletions

View File

@@ -31,6 +31,11 @@ include $(LOCAL_PATH)/common/Makefile.sources
MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/dri
MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/dri
MESA_DRI_CFLAGS := \
-DFEATURE_GL=1 \
-DFEATURE_ES1=1 \
-DFEATURE_ES2=1
MESA_DRI_C_INCLUDES := \
$(addprefix $(MESA_TOP)/, $(mesa_dri_common_INCLUDES)) \
$(DRM_TOP) \

View File

@@ -34,11 +34,10 @@ include $(LOCAL_PATH)/Makefile.sources
# Overriding LOCAL_CC below is an ugly workaround. We cannot place -std=c99
# in LOCAL_C_FLAGS because Android appends LOCAL_C_FLAGS to LOCAL_CPP_FLAGS.
LOCAL_CC := $(CC) -std=c99
LOCAL_CC := $(TARGET_CC) -std=c99
LOCAL_C_FLAGS := \
$(MESA_DRI_C_FLAGS) \
-DI965
LOCAL_CFLAGS := \
$(MESA_DRI_CFLAGS)
LOCAL_C_INCLUDES := \
$(i965_INCLUDES) \