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
I'm doing a Python extended library based on CMake and C++, and the dependencies include OpenCV and PCL, which are installed in the system.
The Python environment is managed by conda.
While the CMake build and system-wide pipx build succeeded, pip install -e . fails on linking: a bunch of error like /home/vscode/miniforge3/envs/lidar_od/compiler_compat/ld: /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.6.0: undefined reference to jpeg_calc_output_dimensions@LIBJPEG_8.0'`
I think there is something missing in my configurations. But I could not find any tutorials or examples.
I'm doing a Python extended library based on CMake and C++, and the dependencies include OpenCV and PCL, which are installed in the system.
The Python environment is managed by conda.
While the CMake build and system-wide pipx build succeeded,
pip install -e .
fails on linking: a bunch of error like/home/vscode/miniforge3/envs/lidar_od/compiler_compat/ld: /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.6.0: undefined reference to
jpeg_calc_output_dimensions@LIBJPEG_8.0'`I think there is something missing in my configurations. But I could not find any tutorials or examples.
structure is as follows:
CMakeLists.txt
The text was updated successfully, but these errors were encountered: