Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

一、概要设计

1、架构图 | architecture diagram

2、move编译器构建原理图

二、详细设计

1、move编译器接口

1.1 支持的命令

$mc support-cmds [OPTIONS]

命令选项:

选项

描述

--json

输出JSON格式

标准输出:

[
   "compile",
   "test",
   "package"
]

错误输出:

 

3.2 编译命令

$mc compile [OPTIONS] 

命令选项:

选项

描述

--json

输出JSON格式

--path

工程路径

标准输出:

[
   "status",
   "data": {
       "target_path": "",
       "diagnostics": []
   }
]

  • No labels