Skip to content

Releases: WasmVM/WasmVM

v1.2.2 Windows install packages

21 Mar 09:00
Compare
Choose a tag to compare

打包 Windows 安裝檔
Provide package with Windows installer

Install guides

Ubuntu

下載 .deb 後使用apt-get指令安裝
Download the .deb file, then use apt-get install to install

Command:

sudo apt-get install <deb-file-path>

MacOS

下載後點開 .pkg 檔,照著安裝程式的步驟安裝
Download and double click the .pkg file, then follow the steps in installer

Windows

下載後點開 .exe 檔,照著安裝程式的步驟安裝
Download and double click the .exe file, then follow the steps in installer

v1.2.1 Ubuntu & MacOS install packages

01 Mar 16:57
Compare
Choose a tag to compare

打包 Ubuntu & MacOS,可以透過 apt-get 或 .pkg 檔安裝 WasmVM
Provide packages for Ubuntu & MacOS

Install guides

Ubuntu

下載 .deb 後使用apt-get指令安裝
Download the .deb file, then use apt-get install to install

Command:

sudo apt-get install <deb-file-path>

MacOS

下載後點開 .pkg 檔,照著安裝程式的步驟安裝
Download and double click the .pkg file, then follow the steps in installer

v1.2 Linker, Archiver & documentation

14 Nov 11:53
Compare
Choose a tag to compare
  1. 提供以下程式:
    Support execution programs :

    • wasmvm-ld : 連結 wasm 二進位碼格式檔 (.wasm) 或靜態函式庫 (.a)
      wasm text format (.wat) to binary (.wasm)
    • wasmvm-ar : 將 wasm 二進位碼格式檔 (.wasm) 封裝成靜態函式庫 (.a)
      Convert binary to text format
  2. 提供文件
    Provide documentation
    https://wasmvm.github.io/WasmVM/

v1.1 C++ 實作

11 May 20:16
Compare
Choose a tag to compare

C++ 的 API 實作,以及提供以下程式:

Support C++ API implementation & the execution programs below :

  • wasmvm-as : 將 wasm 文字格式 (.wat) 轉換成二進位碼格式 (.wasm)

    Convert wasm text format (.wat) to binary (.wasm)

  • readwasm : 將 wasm 二進位碼格式 (.wasm) 轉換成文字格式 (.wat)

    Convert binary to text format

  • wasmsm : 執行二進位 wasm 程式

    Execute wasm binary file

請輸入 --help以查詢各個程式的詳細使用方式

Use --help for each tool to see the detailed usage.

v1.0 C API 實作

23 Dec 05:54
Compare
Choose a tag to compare
  • 實作規格中主要的 API 函式
  • 通過規格中的基本測試

v0.9.2

30 Jun 15:07
Compare
Choose a tag to compare
v0.9.2 Pre-release
Pre-release

 Features

  • 改成 Executor-Loader 架構 (詳情請見 docs/)
  • 支援除了 unreachable 以外的基本指令

 TODO

  • 改用 Google Test 做測試框架
  • 處理記憶體洩漏問題
  • 用官方的 Test suite 做詳細的測試

0.9.1

02 Nov 16:49
Compare
Choose a tag to compare
0.9.1 Pre-release
Pre-release

v0.9 改架構前的最後一個 commit

簡化過的系統呼叫 v0.9

25 Nov 21:43
Compare
Choose a tag to compare
Pre-release

為了在教學文件中使用,這個版本的系統呼叫只有標準輸出、標準輸入和標準錯誤輸出。

This release include a tiny set of system call for tutorial usage. Only standard input, output and error output system call are implemented.