From 71f504df1dc0c08faf0ad609da6d0747511bceb4 Mon Sep 17 00:00:00 2001 From: zhao-baiyi Date: Mon, 17 Jun 2024 17:23:34 +0800 Subject: [PATCH] [build]Fix path errors description:Path error when using -- build only issue:https://gitee.com/openharmony/third_party_llvm-project/issues/IA62KR?from=project-issue Test: LLVM toolchain compilation Signed-off-by: zhao-baiyi --- llvm-build/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm-build/build.py b/llvm-build/build.py index a02474ef9413..25e996c26923 100755 --- a/llvm-build/build.py +++ b/llvm-build/build.py @@ -2827,7 +2827,7 @@ def main(): llvm_make = build_utils.merge_out_path('llvm_make') windows64_install = build_utils.merge_out_path('windows-x86_64-install') llvm_path = llvm_install if not build_config.build_only else \ - os.path.join(buildtools_path, 'clang', 'ohos', 'linux-x86_64', f'clang-{build_config.CLANG_VERSION}') + os.path.join(build_config.buildtools_path, 'clang', 'ohos', 'linux-x86_64', f'clang-{build_config.CLANG_VERSION}') configs = [] if not build_config.no_build_arm: -- Gitee