mirror of https://github.com/status-im/evmc.git
Update README.md
This commit is contained in:
parent
23c02a8c7c
commit
b264a4e2f1
19
README.md
19
README.md
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue