mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-08 08:26:10 +00:00
When building within the android tree (specifically in /external) the compilation fails due to the wrong versions of some header files getting picked up. This commit adds some include paths to ensure the correct headers are found Signed-off-by: Tim Gore <tim.gore@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(LOCAL_PATH)/Makefile.sources
|
|
|
|
#================#
|
|
|
|
define add_tool
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $1.c
|
|
|
|
LOCAL_CFLAGS += -DHAVE_TERMIOS_H
|
|
LOCAL_CFLAGS += -DHAVE_STRUCT_SYSINFO_TOTALRAM
|
|
LOCAL_CFLAGS += -DANDROID -UNDEBUG
|
|
LOCAL_CFLAGS += -std=c99
|
|
# FIXME: drop once Bionic correctly annotates "noreturn" on pthread_exit
|
|
LOCAL_CFLAGS += -Wno-error=return-type
|
|
# Excessive complaining for established cases. Rely on the Linux version warnings.
|
|
LOCAL_CFLAGS += -Wno-sign-compare
|
|
|
|
LOCAL_C_INCLUDES = $(LOCAL_PATH)/../lib
|
|
LOCAL_C_INCLUDES += ${ANDROID_BUILD_TOP}/external/PRIVATE/drm/include/drm
|
|
|
|
LOCAL_MODULE := $1
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_STATIC_LIBRARIES := libintel_gpu_tools
|
|
|
|
LOCAL_SHARED_LIBRARIES := libpciaccess \
|
|
libdrm \
|
|
libdrm_intel
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
endef
|
|
|
|
#================#
|
|
|
|
skip_tools_list := \
|
|
intel_framebuffer_dump \
|
|
intel_reg_dumper \
|
|
intel_vga_read \
|
|
intel_vga_write
|
|
|
|
tools_list := $(filter-out $(skip_tools_list),$(bin_PROGRAMS))
|
|
|
|
$(foreach item,$(tools_list),$(eval $(call add_tool,$(item))))
|