Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions librz/arch/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,18 @@ if capstone_dep.version() == 'next' or capstone_dep.version().split('.')[0].to_i
]
endif

if capstone_dep.version() == 'next' or capstone_dep.version().split('.')[0].to_int() > 5
# plugins
arch_plugins_list += [
'bpf_cs',
]

# plugins sources
arch_plugin_sources += [
'p/arch_bpf_cs.c',
]
endif

if capstone_dep.version() == 'next' or capstone_dep.version().split('.')[0].to_int() > 4
# plugins
arch_plugins_list += [
Expand Down
Loading
Loading