Skip to content

Commit

Permalink
chore(docs): cut new docs version for tag v0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Feb 13, 2024
1 parent 77fc523 commit e08432b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/versioned_docs/version-v0.24.0/migration_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ keywords: [Noir, notes, migration, updating, upgrading]

Noir is in full-speed development. Things break fast, wild, and often. This page attempts to leave some notes on errors you might encounter when upgrading and how to resolve them until proper patches are built.

### `backend encountered an error: libc++.so.1`

Depending on your OS, you may encounter the following error when running `nargo prove` for the first time:

```text
The backend encountered an error: "/home/codespace/.nargo/backends/acvm-backend-barretenberg/backend_binary: error while loading shared libraries: libc++.so.1: cannot open shared object file: No such file or directory\n"
```

Install the `libc++-dev` library with:

```bash
sudo apt install libc++-dev
```

## ≥0.19

### Enforcing `compiler_version`
Expand Down

0 comments on commit e08432b

Please sign in to comment.