diff options
author | Mauro Rossi <issor.oruam@gmail.com> | 2021-11-20 00:47:18 +0100 |
---|---|---|
committer | Mauro Rossi <issor.oruam@gmail.com> | 2021-11-20 02:25:12 +0100 |
commit | f659d00000a1a3667f9861d01d5828dd12ec6857 (patch) | |
tree | 1adbb6f31642a0672fc24ce806e875866b2b996f /android | |
parent | cdeecadcb6e15cac23ded87958aa819aae6763cb (diff) | |
download | mesa-f659d00000a1a3667f9861d01d5828dd12ec6857.tar.gz mesa-f659d00000a1a3667f9861d01d5828dd12ec6857.tar.bz2 mesa-f659d00000a1a3667f9861d01d5828dd12ec6857.zip |
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 <issor.oruam@gmail.com>
Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13888>
Diffstat (limited to 'android')
-rw-r--r-- | android/mesa3d_cross.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/mesa3d_cross.mk b/android/mesa3d_cross.mk index fcb4d938f42..9c7cc36f48f 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 |