Skip to content

Commit 408a48b

Browse files
committed
Fix a KeyError when setting `use_dwarfdump' option via CLI
* bdx/cli.py (IndexingOptionParamType): Add `use_dwarfdump' key to CONVERTERS.
1 parent 2938e46 commit 408a48b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bdx/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ class IndexingOptionParamType(click.ParamType):
196196
"num_processes": IntRange(min=1, max=(os.cpu_count() or 1) * 2),
197197
"index_relocations": BoolParamType(),
198198
"min_symbol_size": IntRange(min=0),
199+
"use_dwarfdump": BoolParamType(),
199200
}
200201

201202
def convert(self, value, param, ctx):

0 commit comments

Comments
 (0)