2
0
mirror of https://github.com/status-im/nimbus-eth1.git synced 2025-01-18 08:11:02 +00:00

28 lines
613 B
Markdown
Raw Normal View History

This folder contains an experimental C wrapper for using parts of the Nimbus
code from C/Go in the Status console client:
https://github.com/status-im/status-console-client/
It serves mainly as a proof-of-concept for now - there are several unresolved
issues surrounding threading, inter-language communication, callbacks etc.
2019-08-01 02:44:27 +02:00
To build the wrappers and the example programs, run from the top level directory:
```bash
make wrappers
```
2019-08-01 02:44:27 +02:00
Now you can run the example programs:
```bash
2019-08-01 02:44:27 +02:00
build/C_wrapper_example
build/go_wrapper_example
```
To build statically linked versions:
```bash
make wrappers-static
```