Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Dec 13, 2023
1 parent 797f725 commit fea8e4c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,19 @@ go run examples/sig/sig.go
go run examples/rand/rand.go
```

### Build executables

Replace `go run` by `go build`, e.g., `go build examples/kem/kem.go`.

**Note** go binaries produced on macOS arm64 are not code-signed properly. See
[https://github.com/golang/go/issues/63997](https://github.com/golang/go/issues/63997).

To fix, run

```shell
codesign -f -s - path_to_exacutable
```

### Run the unit tests

From inside the `liboqs-go` directory, execute
Expand Down

0 comments on commit fea8e4c

Please sign in to comment.