Update README.md

This commit is contained in:
alexm-status 2018-05-28 14:29:31 -07:00 committed by GitHub
parent 23c02a8c7c
commit b264a4e2f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 4 deletions

View File

@ -1,8 +1,19 @@
# Nim Ethereum EVM-C
**Nim Ethereum EVM-C**
# Introduction
Nim EVM-C is a wrapper for EVMC, the [Ethereum Client-VM Connector API](https://github.com/ethereum/evmc).
At the moment it has been tested with the [EVM JIT](https://github.com/ethereum/evmjit).
So far, it has been tested with the [EVM JIT](https://github.com/ethereum/evmjit).
You need to build EVM JIT as a shared library by replacing `add_library(evmjit ${SOURCES} gen/BuildInfo.gen.h)`
by `add_library(evmjit SHARED ${SOURCES} gen/BuildInfo.gen.h)` in libevmjit/CMakeLists
# Installation
You need to build EVM JIT as a shared library, by replacing ```add_library(evmjit ${SOURCES} gen/BuildInfo.gen.h)```
with `add_library(evmjit SHARED ${SOURCES} gen/BuildInfo.gen.h)` in libevmjit/CMakeLists.
# License
May be distributed under one or both of the following:
* [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)
* [MIT license](http://opensource.org/licenses/MIT)