Tags: Xilinx/XRT
Tags
Simplify detail::xilinx_xrt() to always return compiled prefix (#9511) When XILINX_XRT is not set, use compile time constant XRT_INSTALL_PREFIX. There was a bug in the upstream binaries that used parent_path()*2 relative to sopath, but upstream lib path can contain any number of components, e.g. lib/x86_64-linux-gnu/libfoo.so so hardwiring parent_path() * n is not right. Always used compile time CMAKE_INSTALL_PREFIX for detail::xilinx_xrt(), for relocatable builds XILINX_XRT should be set, e.g. do not ever rely on sopath. Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>
Add XRT_BUILD_NUMBER CMake variable for use by upstream builds (#9507) Upstream projects cannot set XRT_VERSION_PATCH directory as it is reset by project(xrt). Instead upstream builds sets XRT_BUILD_NUMBER which is then used here to explicitly set XRT_VERSION_PATCH. Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>
Rename xilinx.icd to amdxrt.icd for XRT upstream builds (#9386) Avoid package conflict when installing internal XRT packages (/opt/xilinx) with upstream packages (/usr). The OpenCL ICD loader `/etc/OpenCL/vendors/xilinx.icd` is installed by internally built xrt-base package, which otherwise installs content to `/opt/xilinx/xrt`. For upstream packages, the ICD loader must be named differently in order to co-exist with internal installs. Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>
CR-1248332: Display vss reset IP info under the --info option (#9298) * display info about the kernels in ip_layout section but not in build_metadata section Signed-off-by: xvijaysri <vijaysri@xilinx.com> * added comments Signed-off-by: xvijaysri <vijaysri@xilinx.com> --------- Signed-off-by: xvijaysri <vijaysri@xilinx.com>
Fix XDP plugin release directory to specify RUNTIME for windows (#9244) The CMake install command for XDP plugins must specify a LIBRARY component for Linux *and* and RUNTIME component for Windows. It should look like this: ``` install (TARGETS ...plugin... RUNTIME DESTINATION ${XDP_PLUGIN_INSTALL_DIR} COMPONENT ${XRT_COMPONENT} LIBRARY DESTINATION ${XDP_PLUGIN_INSTALL_DIR} COMPONENT ${XRT_COMPONENT} ${XRT_NAMELINK_SKIP} ) ``` Signed-off-by: Soren Soe <2106410+stsoe@users.noreply.github.com>
PreviousNext