Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update doc about cmake version & upgrade unicorn engine #9

Merged
merged 2 commits into from
Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ You need:
- [rust](https://rustup.rs/)
- [cross](https://github.com/cross-rs/cross)
- Docker: cross needs it.
- [cmake](https://cmake.org/download/) >= 3.12

## Get Started

Expand Down
2 changes: 1 addition & 1 deletion docs/prototype_of_cannon_in_move.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ optimism-move 是一套基于 move 虚拟机的 layer2 的链上仲裁的原型

- 剥离 move-vm 相关代码。
- 以及修改 vm 和 storage 交互逻辑。
- 将 stroage 接口 mock 掉,将数据读取和写入临时保存下来。
- 将 storage 接口 mock 掉,将数据读取和写入临时保存下来。

最终的目标是能够构建 min-move-vm,并且能够将其编译成 mips 指令集的二进制代码。
### 执行 mips 代码
Expand Down
11 changes: 9 additions & 2 deletions omo/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion omo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
anyhow = { version = "1.0.57" }
clap = { version = "3.1.18", features = ["derive"] }
goblin = { version = "0.5.1" }
unicorn-engine = { version = "2.0.0-rc7" }
unicorn-engine = { version = "2.0.0" }
bytes = { version = "1.1.0" }
byteorder = { version = "1.4.3" }
thiserror = { version = "1.0.31" }
Expand Down