Hello community,
I am using the Hailo SW suite 2025-01 which has Tappas 3.31.0. My objective is to create a .so file for post processing utilizing the Hailo Tappas package in pc. For that, my_post.cpp and my_post.hpp files have added to tappas/core/hailo/libs/postprocesses directory, and updated the meson.build also as per the user guide which is given below:
################################################
MY POST SOURCES
################################################
my_post_sources = [
‘my_post.cpp’,
]
my_post_lib = shared_library(‘my_post’,
my_post_sources,
include_directories: [hailo_general_inc] + xtensor_inc,
dependencies : post_deps,
gnu_symbol_visibility : ‘default’,
install: true,
install_dir: post_proc_install_dir,
)
But a issue is happening when compiling the file using the command: ./scripts/gstreamer/install_hailo_gstreamer.sh --target-platform hailo15
The error is given below:
Dependency libzmq found: YES 4.3.4 (cached)
Run-time dependency hailo_media_library_common found: NO (tried pkgconfig)
plugins/meson.build:53:3: ERROR: Dependency “hailo_media_library_common” not found, tried pkgconfig
A full log can be found at /local/workspace/tappas/core/hailo/build.release/meson-logs/meson-log.txt
I doubt why the dependencies is failing when compiling the file eventhough the SW suite is supported with hailo-15. Can somebody explain that? Is there any specific procedure to generate the post process shared object file in pc for adding with Hailo15 board? It would be helpful.