From 8c1d113bfeb00de987e110be73c389af8c65031b Mon Sep 17 00:00:00 2001 From: xwx1135370 Date: Mon, 6 Mar 2023 11:07:33 +0800 Subject: [PATCH] PR Description The python version is upgraded from 3.8 to 3.10, which causes the execution of mingw.py to fail Issue https://gitee.com/openharmony/third_party_llvm-project/issues/I6EF97?from=project-issue Test Full compilation Signed-off-by: xwx1135370 --- llvm-build/mingw.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm-build/mingw.py b/llvm-build/mingw.py index 4eb6464900d3..39bd000c06b7 100755 --- a/llvm-build/mingw.py +++ b/llvm-build/mingw.py @@ -85,6 +85,7 @@ class LlvmMingw(): "LDFLAGS": common_flags, "CFLAGS": common_flags, "CXXFLAGS": common_flags, + "PATH": os.environ["PATH"], } def cmake_prebuilt_bin_dir(self): -- Gitee