From db5c1779469d192347884791adf13da2d9e7d6ff Mon Sep 17 00:00:00 2001 From: zhuoli Date: Mon, 7 Mar 2022 09:33:15 +0800 Subject: [PATCH] Update readme and boundle.json Change-Id: Iad147e14fe2131a5fe3978930a51771a7ccdf96e Signed-off-by: zhuoli --- README.md | 2 +- README_zh.md | 2 +- ts2panda/ts2abc/BUILD.gn | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 039980439e..b9da2af63e 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For more infomation, see: [ARK Runtime Subsystem](https://gitee.com/openharmony/ ts2abc uses the command line interaction mode and converts JS code into ARK bytecode files that can be run on an ARK runtime system. ts2abc supports Windows, Linux, and macOS. Front-end tools, converting JS source code into ARK bytecode, can be built by specifing the `--build-target` with `ark_ts2abc` on Linux. ``` -$ ./build.sh --product-name Hi3516DV300 --build-target ark_ts2abc +$ ./build.sh --product-name Hi3516DV300 --build-target ark_ts2abc_build ``` ### Usage Guidelines diff --git a/README_zh.md b/README_zh.md index aa61166413..b1cc5b1be2 100644 --- a/README_zh.md +++ b/README_zh.md @@ -34,7 +34,7 @@ ts2abc组件是方舟运行时子系统的前端工具,支持将JavaScript文 ts2abc组件采用命令行交互方式,支持将JavaScript代码转换为方舟字节码文件,使其能够在方舟运行时上运行。支持Windows/Linux/MacOS平台。方舟前端工具在linux平台上可通过全量编译或指定编译前端工具链获取。 ``` -$ ./build.sh --product-name Hi3516DV300 --build-target ark_ts2abc +$ ./build.sh --product-name Hi3516DV300 --build-target ark_ts2abc_build ``` ### 使用说明 diff --git a/ts2panda/ts2abc/BUILD.gn b/ts2panda/ts2abc/BUILD.gn index 01cd95db88..803df05e5b 100755 --- a/ts2panda/ts2abc/BUILD.gn +++ b/ts2panda/ts2abc/BUILD.gn @@ -110,4 +110,6 @@ ohos_static_library("jsoncpp_static") { "$jsoncpp_root/include", "$jsoncpp_root/include/json/", ] + subsystem_name = "ark" + part_name = "ark_frontend_tool" } -- Gitee