Skip to content

Commit

Permalink
Update README.md (#36)
Browse files Browse the repository at this point in the history
移除额外的提示符`$`,以改善复制操作体验
  • Loading branch information
Ryuujo Zhang authored May 12, 2022
1 parent f7ee211 commit d5a51f8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
### `Linux``macOS`为例

```bash
$ cd 你想要安装 iTXTech MCL 的目录
$ curl -LJO https://github.com/iTXTech/mcl-installer/releases/download/v1.0.6/mcl-installer-1.0.6-linux-amd64 # 如果是macOS,就将链接中的 linux 修改为 macos
$ chmod +x mcl-installer-1.0.6-linux-amd64
$ ./mcl-installer-1.0.6-linux-amd64
cd 你想要安装 iTXTech MCL 的目录
curl -LJO https://github.com/iTXTech/mcl-installer/releases/download/v1.0.6/mcl-installer-1.0.6-linux-amd64 # 如果是macOS,就将链接中的 linux 修改为 macos
chmod +x mcl-installer-1.0.6-linux-amd64
./mcl-installer-1.0.6-linux-amd64
```

### `Windows`为例
Expand Down Expand Up @@ -43,22 +43,22 @@ Would you like to download it? (Y/N, default: Y) Y:下载,N:取消

```bash
# MCL Installer 接受第一个参数为 Mirai Repo 地址,强制使用HTTPS协议,不以 / 结尾
$ ./mcl-installer mirai.mamoe.net/assets/mcl
./mcl-installer mirai.mamoe.net/assets/mcl
```

## 构建 `mcl-installer`

* `mcl-installer` 使用 [rust](https://www.rust-lang.org/) 编写,需要调用 `cargo` 构建。

```bash
$ git clone https://github.com/iTXTech/mcl-installer.git
$ cd mcl-installer
git clone https://github.com/iTXTech/mcl-installer.git
cd mcl-installer
# native-tls => 使用系统的 OpenSSL,rustls => 使用 rustls。
# --release 用于构建优化过的二进制文件,如需要进行调试请去除该参数。
$ cargo build --features native-tls --release
$ cd target/release
$ strip mcl-installer # strip 可减小可执行文件大小
$ upx --best --lzma mcl-installer # 使用 upx 压缩可进一步缩小可执行文件大小
cargo build --features native-tls --release
cd target/release
strip mcl-installer # strip 可减小可执行文件大小
upx --best --lzma mcl-installer # 使用 upx 压缩可进一步缩小可执行文件大小
```

## 开源许可证
Expand Down

0 comments on commit d5a51f8

Please sign in to comment.