You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When building cutter from source, build fails in (Rizin Bundled) rz-type module build. Build log for rz-type module build can be found in this paste.
Environment information
Describe the bug
When building cutter from source, build fails in (Rizin Bundled)
rz-type
module build. Build log forrz-type
module build can be found in this paste.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Build should work without any errors.
Possible Fix
The problem is fixed when I add
tree-sitter
as dependency torz-type
module. Currentlyrz-type
only hastree-sitter-c
as it's dependency.tree_sitter_c_dep = dependency('tree-sitter-c') rz_type_inc = [ platform_inc, 'parser', ] rz_type = library('rz_type', rz_type_sources, include_directories: rz_type_inc, dependencies: [ rz_util_dep, tree_sitter_c_dep, lrt, + dependency('tree-sitter') ], install: true, implicit_include_directories: false, install_rpath: rpath_lib, soversion: rizin_libversion, version: rizin_version, name_suffix: lib_name_suffix, name_prefix: lib_name_prefix, )
The text was updated successfully, but these errors were encountered: