Message ID | 20170419110155.6828-9-arkadiusz.hiler@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, Apr 19, 2017 at 01:01:50PM +0200, Arkadiusz Hiler wrote:
> AOSP, as of this commit, does not include libdrm with fence defines.
Pushed local defines that should keep the benchmark happy.
Please do reset the configure libdrm requirements to what is available
on min(Android, debian stable). They should be our compile targets.
-Chris
On Wed, Apr 19, 2017 at 05:58:28PM +0100, Chris Wilson wrote: > On Wed, Apr 19, 2017 at 01:01:50PM +0200, Arkadiusz Hiler wrote: > > AOSP, as of this commit, does not include libdrm with fence defines. > > Pushed local defines that should keep the benchmark happy. > > Please do reset the configure libdrm requirements to what is available > on min(Android, debian stable). They should be our compile targets. > -Chris Series rebased (sans this patch) cleanly on current master. Everything compiles just fine :-) Thanks!
diff --git a/benchmarks/Android.mk b/benchmarks/Android.mk index c0fa09f..a790ec7 100644 --- a/benchmarks/Android.mk +++ b/benchmarks/Android.mk @@ -34,7 +34,9 @@ endef #================# -benchmark_list := $(benchmarks_prog_list) +skip_benchmark_list = gem_latency + +benchmark_list := $(filter-out $(skip_benchmark_list),$(benchmarks_prog_list)) ifeq ($(HAVE_LIBDRM_INTEL),true) benchmark_list += $(LIBDRM_INTEL_BENCHMARKS)
AOSP, as of this commit, does not include libdrm with fence defines. Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> --- benchmarks/Android.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)