From 7aa4762a1731696de981b0e91379eda14b1bb2e9 Mon Sep 17 00:00:00 2001 From: liuwenfeng Date: Tue, 13 May 2025 22:12:04 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E5=AF=B9=E9=BD=90=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liuwenfeng --- ohos/README_zh.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ohos/README_zh.md b/ohos/README_zh.md index 357ac22e0ad..c7ee0c2e03e 100644 --- a/ohos/README_zh.md +++ b/ohos/README_zh.md @@ -27,9 +27,9 @@ sudo apt-get install pkg-config | 参数 | 说明 | | ---- | ---- | -| arg1 | openharmony代码路径 | -| arg2 | 产品名字,实际上为out目录下存放系统编译结果的那个目录 如hi3516dv300 或则 rk3568, 注: LTS3.0 的版本必须是 ohos-arm-release| -| arg3 | mesa 源码路径| +| arg1 | openharmony代码路径 | +| arg2 | 产品名字,实际上为out目录下存放系统编译结果的那个目录 如hi3516dv300 或则 rk3568, 注: LTS3.0 的版本必须是 ohos-arm-release| +| arg3 | mesa 源码路径 | 示例如下: ~/openharmony 是openharmony源码路径, rk3568是对应的产品输出目录,~/mesa3d为mesa源码路径, 执行完命令后会生成一个名叫builddir的文件夹,该文件夹是mesa的编译目录. 编译完成后相关的库存放在builddir/install/lib 下 -- Gitee From f34bfd792132a131a6365bf55d490cc4f02581a7 Mon Sep 17 00:00:00 2001 From: liuwenfeng Date: Mon, 19 May 2025 08:16:51 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=E9=81=BF=E5=85=8D=E4=BE=9D=E8=B5=96zstd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liuwenfeng --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 62586268ca4..f5acd95f286 100644 --- a/meson.build +++ b/meson.build @@ -1587,7 +1587,7 @@ if dep_zlib.found() pre_args += '-DHAVE_ZLIB' endif -dep_zstd = dependency('libzstd', required : get_option('zstd')) +dep_zstd = dependency('libzstd', version : '>= 2.9.9', required : get_option('zstd')) if dep_zstd.found() pre_args += '-DHAVE_ZSTD' endif -- Gitee