Mesa (master): Android.mk: Fix missing \ from recent llvm change

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Sep 13 19:40:42 UTC 2019


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

Author: John Stultz <john.stultz at linaro.org>
Date:   Thu Sep 12 20:02:18 2019 +0000

Android.mk: Fix missing \ from recent llvm change

Building w/ AOSP, I was hitting the following error:
external/mesa3d/src/amd/Android.common.mk:95: error: missing separator.

Which was due to the changes to mesa-build-with-llvm  missing
a line continuation.

Fixes: 96b592696f13
Signed-off-by: John Stultz <john.stultz at linaro.org>

---

 Android.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Android.mk b/Android.mk
index df379a40528..16e385e162b 100644
--- a/Android.mk
+++ b/Android.mk
@@ -97,7 +97,7 @@ endif
 define mesa-build-with-llvm
   $(if $(filter $(MESA_ANDROID_MAJOR_VERSION), 4 5 6 7), \
     $(warning Unsupported LLVM version in Android $(MESA_ANDROID_MAJOR_VERSION)),) \
-  $(eval LOCAL_CFLAGS += -DLLVM_AVAILABLE -DMESA_LLVM_VERSION_STRING=\"3.9\")
+  $(eval LOCAL_CFLAGS += -DLLVM_AVAILABLE -DMESA_LLVM_VERSION_STRING=\"3.9\") \
   $(eval LOCAL_SHARED_LIBRARIES += libLLVM)
 endef
 




More information about the mesa-commit mailing list