Skip to content

Commit

Permalink
Fix build instructions in README.md (#2169)
Browse files Browse the repository at this point in the history
* Fix build instructions in `README.md`

* Set Version: 1.0.351

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
tothtamas28 and devops authored Nov 10, 2023
1 parent cc7d175 commit 2fed073
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,19 +184,19 @@ You also need to get the blockchain plugin submodule and install it.

```sh
git submodule update --init --recursive
poetry -C kevm-pyk run kevm-dist --verbose build plugin
poetry -C kevm-pyk run kevm-dist --verbose build evm-semantics.plugin
```

To change the default compiler:

```sh
CXX=clang++-14 poetry -C kevm-pyk run kevm-dist --verbose build plugin
CXX=clang++-14 poetry -C kevm-pyk run kevm-dist --verbose build evm-semantics.plugin
```

On Apple silicon:

```sh
APPLE_SILICON=true poetry -C kevm-pyk run kevm-dist --verbose build plugin
APPLE_SILICON=true poetry -C kevm-pyk run kevm-dist --verbose build evm-semantics.plugin
```

#### K Definitions
Expand All @@ -207,10 +207,10 @@ Finally, you can build the semantics.
poetry -C kevm-pyk run kevm-dist --verbose build -j4
```

You can build specific targets using options `llvm`, `haskell`, `haskell-standalone` or `foundry`, e.g.:
You can build specific targets using options `evm-semantics.{llvm,haskell,haskell-standalone}`, e.g.:

```sh
poetry -C kevm-pyk run kevm-dist build -j2 llvm haskell
poetry -C kevm-pyk run kevm-dist build -j2 evm-semantics.llvm evm-semantics.haskell
```

Targets can be cleaned with
Expand Down Expand Up @@ -259,7 +259,7 @@ poetry -C kevm-pyk run kevm-pyk run tests/ethereum-tests/LegacyTests/Constantino
To enable the debug symbols for the llvm backend, build using this command:

```sh
poetry -C kevm-pyk run kevm-dist build llvm --enable-llvm-debug
poetry -C kevm-pyk run kevm-dist build evm-semantics.llvm --enable-llvm-debug
```

To debug a conformance test, add the `--debugger` flag to the command:
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kevm-pyk"
version = "1.0.350"
version = "1.0.351"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from typing import Final


VERSION: Final = '1.0.350'
VERSION: Final = '1.0.351'
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.350
1.0.351

0 comments on commit 2fed073

Please sign in to comment.