From 7d3465aa4bee9117111bff7f0993582b94aa50a3 Mon Sep 17 00:00:00 2001 From: ShaoboFeng Date: Wed, 7 Jun 2023 11:05:40 +0800 Subject: [PATCH 1/2] fix build bug --- .gn | 2 +- build/gn/BUILD.gn | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gn b/.gn index 10d8679..191b1f0 100644 --- a/.gn +++ b/.gn @@ -1 +1 @@ -buildconfig = "//build/BUILDCONFIG.gn" +buildconfig = "//build/gn/BUILDCONFIG.gn" diff --git a/build/gn/BUILD.gn b/build/gn/BUILD.gn index 90a6155..4056c61 100644 --- a/build/gn/BUILD.gn +++ b/build/gn/BUILD.gn @@ -13,6 +13,5 @@ group("ft_engine") { deps = [ - "//third_party/bounds_checking_function/ft_build:libsec_static", ] } -- Gitee From 3649c5f007470a10bef890b70ddf244b396095d6 Mon Sep 17 00:00:00 2001 From: ShaoboFeng Date: Wed, 7 Jun 2023 12:25:24 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix=20prebuild=E4=B8=8D=E8=83=BD=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E6=89=A7=E8=A1=8C=E5=AE=89=E8=A3=85=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/builder/common/env_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/builder/common/env_checker.py b/build/builder/common/env_checker.py index a292b76..bf29b16 100755 --- a/build/builder/common/env_checker.py +++ b/build/builder/common/env_checker.py @@ -46,7 +46,7 @@ class Checker: def _install_packages(self, pkgs: list) -> bool: logger.info('Try install system packages: {} ...'.format(', '.join(pkgs))) - is_success, _output = exec_sys_command(['sudo', 'yum', 'install', '-y', ' '.join(pkgs)]) + is_success, _output = exec_sys_command(['sudo', 'yum', 'install', '-y'] + pkgs) return is_success def check_system_env(self, project_dir: str, install_missing_pkg: bool = False) -> bool: -- Gitee