Mesa (master): android: radv: build vulkan.radv conditionally to radeonsi

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Aug 3 18:10:18 UTC 2018


Module: Mesa
Branch: master
Commit: 1c7a2433b270afb65f044d0cf49cb67715f50b5b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1c7a2433b270afb65f044d0cf49cb67715f50b5b

Author: Mauro Rossi <issor.oruam at gmail.com>
Date:   Thu Aug  2 21:07:31 2018 +0200

android: radv: build vulkan.radv conditionally to radeonsi

A problem was reported with arm,arm64 targets build due to missing
libLLVM shared library dependency with AOSP; to avoid this issue vulkan.radv
is built conditionally only when radeonsi is in BOARD_GPU_DRIVERS

Fixes: 0ca153f869 ("android: radv: enable build of vulkan.radv HAL module")

Reported-by: John Stultz <john.stultz at linaro.org>
Signed-off-by: Mauro Rossi <issor.oruam at gmail.com>
Reviewed-by: Emil Velikov <emil.velikov at collabora.com>
Cc: "18.2" <mesa-stable at lists.freedesktop.org>

---

 src/amd/Android.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/amd/Android.mk b/src/amd/Android.mk
index 6129e360cb..e40e7da01b 100644
--- a/src/amd/Android.mk
+++ b/src/amd/Android.mk
@@ -27,4 +27,6 @@ include $(LOCAL_PATH)/Makefile.sources
 
 include $(LOCAL_PATH)/Android.addrlib.mk
 include $(LOCAL_PATH)/Android.common.mk
+ifneq ($(filter radeonsi,$(BOARD_GPU_DRIVERS)),)
 include $(LOCAL_PATH)/vulkan/Android.mk
+endif




More information about the mesa-commit mailing list