On a machine with Ubuntu 22.04.5 LTS, pynq==3.0.1
and XRT==2.18.179
, I get an error trying to load an overlay:
import pynq
overlay = pynq.Overlay('my.xclbin')
AttributeError: /opt/xilinx/xrt/lib/libxrt_core.so: undefined symbol: xclProbe
Inspecting the library, the symbol is local:
nm /opt/xilinx/xrt/lib/libxrt_core.so | grep xclProbe
00000000000dbb90 t xclProbe
while with XRT==2.16.204
the symbol is global
nm /opt/xilinx/xrt/lib/libxrt_core.so | grep xclProbe
00000000000cbf00 T xclProbe
What’s the latest support XRT release, and are there plans to support the latest XRT? Or otherwise is there anything else I can try with my setup?
Thanks!