Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions builders/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ no clean way to add a `libwasmvm.{so,dll,dylib}`. It needs to be committed with
the tagged (go) release in order to be easily usable.

The solution is to precompile the rust code into libraries for the major
platforms (Linux, Windows, MacOS) and commit them to the repository at each
platforms (Linux, Windows, macOS) and commit them to the repository at each
tagged release. This should be doable from one host machine, but is a bit
tricky. This folder contains build scripts and a Docker image to create all
dynamic libraries from one host. In general this is set up for a Linux host, but
Expand Down Expand Up @@ -134,7 +134,7 @@ See those DockerHub repos for all available versions of the builder images.

**Version 0003:**

- Avoid pre-fetching of dependences to decouple builders from source code.
- Avoid pre-fetching of dependencies to decouple builders from source code.
- Bump `OSX_VERSION_MIN` to 10.10.
- Use `rust:1.47.0-buster` as base image for cross compilation to macOS

Expand All @@ -149,8 +149,8 @@ See those DockerHub repos for all available versions of the builder images.

## Usage

Create the Docker images, capable of cross-compiling Linux and MacOS dynamic
libs. As the builder images are all x86_64, it can be slow and memory intense to
Create the Docker images, capable of cross-compiling Linux and macOS dynamic
libs. As the builder images are all x86_64, it can be slow and memory-intensive to
do this on a different architecture:

```sh
Expand Down
2 changes: 1 addition & 1 deletion internal/api/testdb/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Testdb
This package contains an in memory DB for testing purpose only. The original code was copied from
This package contains an in-memory DB for testing purposes only. The original code was copied from
https://github.com/tendermint/tm-db/tree/v0.6.7 to decouple project dependencies.

All credits and a big thank you go to the original authors!