summaryrefslogtreecommitdiff
path: root/gr-utils/modtool/tools/parser_cc_block.py
diff options
context:
space:
mode:
authorJosh Morman <mormjb@gmail.com>2020-04-23 15:03:55 -0400
committerJosh Morman <mormjb@gmail.com>2020-06-04 10:05:48 -0400
commit999c0e723240ee783bca17942f77a9d05bbfc168 (patch)
tree3661aeb0ef10bad228df014a20e5b0a63627c833 /gr-utils/modtool/tools/parser_cc_block.py
parenta4e6d4d55b35ac36dd5915dec5145073d8ec3b9a (diff)
utils: add functionality to generate bindings
This currently exists in two places 1) Bindtool (longevity TBD) which calls blocktool to parse the public header file in the include directory 2) Modtool - binding of headers added to add and bind. rm, update, info, etc still TODO
Diffstat (limited to 'gr-utils/modtool/tools/parser_cc_block.py')
-rw-r--r--gr-utils/modtool/tools/parser_cc_block.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/modtool/tools/parser_cc_block.py b/gr-utils/modtool/tools/parser_cc_block.py
index 81c10f0cdc..9321de588b 100644
--- a/gr-utils/modtool/tools/parser_cc_block.py
+++ b/gr-utils/modtool/tools/parser_cc_block.py
@@ -204,7 +204,7 @@ class ParserCCBlock(object):
continue
return param_list
# Go, go, go!
- if self.version in ('37', '38'):
+ if self.version in ('37', '38', '39'):
make_regex = r'static\s+sptr\s+make\s*'
else:
make_regex = r'(?<=_API)\s+\w+_sptr\s+\w+_make_\w+\s*'