mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 17:06:14 +00:00
Recently added tools / benckmarks have the same module name as existing tests. Android does not allow duplicate modules. This patch appends _benchmark and _tool to the module names used when building benckmarks and tools to prevent clashes with tests of the same name. Signed-off-by: Derek Morton <derek.j.morton@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
37 lines
980 B
Makefile
37 lines
980 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(LOCAL_PATH)/Makefile.sources
|
|
|
|
#================#
|
|
|
|
define add_benchmark
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $1.c
|
|
|
|
LOCAL_CFLAGS += -DHAVE_STRUCT_SYSINFO_TOTALRAM
|
|
LOCAL_CFLAGS += -DANDROID -UNDEBUG -include "check-ndebug.h"
|
|
LOCAL_CFLAGS += -std=gnu99
|
|
# 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_MODULE := $1_benchmark
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_STATIC_LIBRARIES := libintel_gpu_tools
|
|
|
|
LOCAL_SHARED_LIBRARIES := libpciaccess \
|
|
libdrm \
|
|
libdrm_intel
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
endef
|
|
|
|
#================#
|
|
|
|
benchmark_list := $(bin_PROGRAMS)
|
|
|
|
$(foreach item,$(benchmark_list),$(eval $(call add_benchmark,$(item))))
|