From ff5f369c6cfd08dac0fa30f869c0bf6a38f7ba25 Mon Sep 17 00:00:00 2001 From: liuyaning Date: Thu, 23 Mar 2023 19:28:50 +0800 Subject: [PATCH 1/2] Title:Add the opt and llc tools in package Description:LLVM adds llc and opt tools during the collection process. Issue:https://gitee.com/openharmony/third_party_llvm-project/issues/I6POAE Test:none Signed-off-by: liuyaning --- llvm-build/build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm-build/build.py b/llvm-build/build.py index 33b914b484b5..2e19945bf769 100755 --- a/llvm-build/build.py +++ b/llvm-build/build.py @@ -1576,6 +1576,8 @@ class LlvmPackage(BuildUtils): 'clang-tidy%s' % ext, 'clangd%s' % ext, 'count%s' % ext, + 'llc%s' % ext, + 'opt%s' % ext, ] necessary_bin_files.extend(necessary_bin_file) -- Gitee From 5bf94c19bcb4969e80f8d9706ae91b3930ecbdce Mon Sep 17 00:00:00 2001 From: liuyaning Date: Tue, 28 Mar 2023 16:19:56 +0800 Subject: [PATCH 2/2] Title:Add the opt and llc tools in package Description:LLVM adds llc and opt tools during the collection process. Issue:https://gitee.com/openharmony/third_party_llvm-project/issues/I6POAE Signed-off-by: liuyaning --- llvm-build/build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm-build/build.py b/llvm-build/build.py index 2e19945bf769..836f6ef1831a 100755 --- a/llvm-build/build.py +++ b/llvm-build/build.py @@ -1578,7 +1578,9 @@ class LlvmPackage(BuildUtils): 'count%s' % ext, 'llc%s' % ext, 'opt%s' % ext, + ] + necessary_bin_files.extend(necessary_bin_file) @staticmethod -- Gitee