# KiVM **Repository Path**: lineco/KiVM ## Basic Information - **Project Name**: KiVM - **Description**: This is a pure C++ implementation of Java Virtual Machine (only support Java 8) which is called Kiva's Java Virtual Machine. Inspired by Hotspot In Action. - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: https://github.com/imkiva/KiVM - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-04-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README KiVM ============= [![Build Status](https://travis-ci.org/imkiva/KiVM.svg?branch=master)](https://travis-ci.org/imkiva/KiVM) [![GitHub top language](https://img.shields.io/github/languages/top/imkiva/KiVM.svg)](https://github.com/imkiva/KiVM) [![license](https://img.shields.io/github/license/imkiva/KiVM.svg?colorB=000000)](https://github.com/imkiva/KiVM) Kiva's Java Virtual Machine. ### Build 1. Requirements * Linux or macOS. **Windows is not supported.** * Java Development Kit >= 8 * CMake >= 3.8 2. Build instructions 1. First, clone this repo. 2. `cd` into your directory that contains KiVM source code. 3. Type `cmake . && make` in your terminal app. 4. Enjoy it! ### Credit Inspired by [wind_jvm](https://github.com/wind2412/wind_jvm)