Skip to content

Commit cd037a8

Browse files
committed
Enhance target options in CLI by adding new summary targets for LLVM and Haskell. This update expands the choices available for the --target argument to include llvm-summary and haskell-summary.
1 parent dd34cee commit cd037a8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

kevm-pyk/src/kevm_pyk/cli.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,9 @@ class KEVMCLIArgs(KCLIArgs):
855855
@cached_property
856856
def target_args(self) -> ArgumentParser:
857857
args = ArgumentParser(add_help=False)
858-
args.add_argument('--target', choices=['llvm', 'haskell', 'haskell-standalone', 'foundry'])
858+
args.add_argument(
859+
'--target', choices=['llvm', 'haskell', 'llvm-summary', 'haskell-summary', 'haskell-standalone', 'foundry']
860+
)
859861
return args
860862

861863
@cached_property

0 commit comments

Comments
 (0)