You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by me...@apache.org on 2023/01/27 18:56:11 UTC

[tvm] branch main updated: [Hexagon][CI] Updated sha for builder LLVM (#13418)

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

mehrdadh 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 95fa22308b [Hexagon][CI] Updated sha for builder LLVM (#13418)
95fa22308b is described below

commit 95fa22308bd08e583dadb3ad429aa768ecce85c2
Author: joshherr-quic <95...@users.noreply.github.com>
AuthorDate: Fri Jan 27 12:56:04 2023 -0600

    [Hexagon][CI] Updated sha for builder LLVM (#13418)
    
    Updated sha to deal with some codegen issues that came up with the last version.
---
 docker/install/ubuntu_install_hexagon.sh | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/docker/install/ubuntu_install_hexagon.sh b/docker/install/ubuntu_install_hexagon.sh
index 722cfaa40c..57807398a7 100755
--- a/docker/install/ubuntu_install_hexagon.sh
+++ b/docker/install/ubuntu_install_hexagon.sh
@@ -21,7 +21,7 @@ set -o pipefail
 
 # Install LLVM/clang
 CLANG_LLVM_HOME=/opt/clang-llvm
-LLVM_SHA=361a27c155ec8b222e3318488a208c0eb39624c8
+LLVM_SHA=a9871772a8b13c1240a95a84a3327f84bb67dddc
 
 mkdir llvm-hexagon
 pushd llvm-hexagon
@@ -37,8 +37,7 @@ cmake \
   -DCMAKE_INSTALL_PREFIX=${CLANG_LLVM_HOME} \
   -DLLVM_ENABLE_ASSERTIONS=ON \
   -DLLVM_TARGETS_TO_BUILD:STRING="Hexagon;X86" \
-  -DLLVM_ENABLE_PROJECTS:STRING="clang;llvm" \
-  -DTARGET_TRIPLE=x86_64-unknown-linux-gnu \
+  -DLLVM_ENABLE_PROJECTS:STRING="llvm" \
   -DLLVM_DEFAULT_TARGET_TRIPLE=x86_64-unknown-linux-gnu \
   ../llvm
 ninja install