From f659d00000a1a3667f9861d01d5828dd12ec6857 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sat, 20 Nov 2021 00:47:18 +0100 Subject: [PATCH] android: define cpp_rtti=false because libLLVM is built w/o RTTI libLLVM for Android is built without RTTI, but after commit ad86267 mesa inherits meson default RTTI enabled state cpp_rtti=false is added to meson options in android/mesa3d_cross.mk Signed-off-by: Mauro Rossi Reviewed-by: Jesse Natalie Part-of: --- android/mesa3d_cross.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/android/mesa3d_cross.mk b/android/mesa3d_cross.mk index fcb4d93..9c7cc36 100644 --- a/android/mesa3d_cross.mk +++ b/android/mesa3d_cross.mk @@ -93,6 +93,7 @@ MESON_GEN_NINJA := \ -Dvulkan-drivers=$(subst $(space),$(comma),$(subst radeon,amd,$(BOARD_MESA3D_VULKAN_DRIVERS))) \ -Dgbm=enabled \ -Degl=enabled \ + -Dcpp_rtti=false \ MESON_BUILD := PATH=/usr/bin:/bin:/sbin:$$PATH ninja -C $(MESON_OUT_DIR)/build -- 2.7.4