Skip to content

Commit

Permalink
Don't ignore --with-llvm-library in kevm kompile (#1965)
Browse files Browse the repository at this point in the history
* Don't ignore `--with-llvm-library` in `kevm kompile`

* Set Version: 1.0.237

* Set Version: 1.0.238

* Set Version: 1.0.240

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: rv-jenkins <[email protected]>
Co-authored-by: Andrei Văcaru <[email protected]>
  • Loading branch information
4 people authored Jul 26, 2023
1 parent 7b6a595 commit c467120
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
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.239"
version = "1.0.240"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
3 changes: 3 additions & 0 deletions kevm-pyk/src/kevm_pyk/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from pyk.kast.outer import KApply, KRewrite
from pyk.kcfg import KCFG, KCFGExplore
from pyk.kore.prelude import int_dv
from pyk.ktool.kompile import LLVMKompileType
from pyk.ktool.krun import KRunOutput, _krun
from pyk.prelude.ml import is_bottom, is_top
from pyk.proof import APRProof
Expand Down Expand Up @@ -103,6 +104,7 @@ def exec_kompile(
o3: bool = False,
debug: bool = False,
enable_llvm_debug: bool = False,
llvm_library: bool = False,
**kwargs: Any,
) -> None:
optimization = 0
Expand All @@ -125,6 +127,7 @@ def exec_kompile(
ccopts=ccopts,
optimization=optimization,
enable_llvm_debug=enable_llvm_debug,
llvm_kompile_type=LLVMKompileType.C if llvm_library else LLVMKompileType.MAIN,
debug=debug,
)

Expand Down
2 changes: 1 addition & 1 deletion package/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
kevm (1.0.239) unstable; urgency=medium
kevm (1.0.240) unstable; urgency=medium

* Initial Release.

Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.239
1.0.240

0 comments on commit c467120

Please sign in to comment.