This is an automated email from the ASF dual-hosted git repository.

kparzysz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 8de64cfba1 [Hexagon] Update launcher cmake flags for Android (#11213)
8de64cfba1 is described below

commit 8de64cfba1c694571b0768af19bd5aaab8e07e1e
Author: Krzysztof Parzyszek <[email protected]>
AuthorDate: Wed May 4 15:55:50 2022 -0500

    [Hexagon] Update launcher cmake flags for Android (#11213)
    
    Don't build graph executor for Android (it's not needed).
---
 apps/hexagon_launcher/cmake/android/CMakeLists.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/apps/hexagon_launcher/cmake/android/CMakeLists.txt 
b/apps/hexagon_launcher/cmake/android/CMakeLists.txt
index 0d62aefe7a..69334a3b69 100644
--- a/apps/hexagon_launcher/cmake/android/CMakeLists.txt
+++ b/apps/hexagon_launcher/cmake/android/CMakeLists.txt
@@ -75,11 +75,13 @@ ExternalProject_Add(android_tvm_runtime
   "-DANDROID_PLATFORM=${ANDROID_PLATFORM}"
   "-DCMAKE_CXX_STANDARD=14"
   "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}"
-  "-DUSE_HEXAGON_ARCH=${USE_HEXAGON_ARCH}"
   "-DUSE_HEXAGON=ON"
+  "-DUSE_GRAPH_EXECUTOR=OFF"
+  "-DUSE_HEXAGON_ARCH=${USE_HEXAGON_ARCH}"
   "-DUSE_HEXAGON_SDK=${USE_HEXAGON_SDK}"
   "-DUSE_LIBBACKTRACE=OFF"
   "-DUSE_LLVM=OFF"
+  "-DUSE_PROFILER=OFF"
   "-DUSE_RPC=OFF"
   INSTALL_COMMAND ""
   BUILD_ALWAYS ON

Reply via email to