和我一起完成一个 JVM

502 阅读1分钟
原文链接: github.com

Linux Build Status

A JVM on Rust.

Strive to achieve a very clear structure.

  • Minimal(or No) Unsafe
  • Minimal Mutable

Now it's just started and only has little code so it's very easy to understand and follow. Welcome Star : )

Introduction

jvm-rs is a toy JVM (which is far from complete) programmed in Rust inspired by jvm.go. The main purpose of this project is learning Rust and the JVM. So the number one goal of the project is readability of code. The basic idea is to just implement the core JVM, and use rt.jar (from OpenJDK) as its class library.

My dev environment

  • Ubuntu 18.04
  • Java 1.8.0_172
  • Rust 1.27.0

Get and Build jvm-rs

Ensure your Java version is 1.8.0_172 and JAVA_HOME env was set

git clone https://github.com/standbyme/jvm-rs.git
cd jvm-rs
cargo test