SUMMARY = "Xilinx Runtime(XRT) libraries" DESCRIPTION = "Xilinx Runtime User Space Libraries and headers" require xrt-${PV}.inc LICENSE = "GPL-2.0-or-later & Apache-2.0 & MIT" LIC_FILES_CHKSUM = "file://../LICENSE;md5=de2c993ac479f02575bcbfb14ef9b485 \ file://runtime_src/core/edge/drm/zocl/LICENSE;md5=7d040f51aae6ac6208de74e88a3795f8 \ file://runtime_src/core/pcie/driver/linux/xocl/LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ file://runtime_src/core/pcie/linux/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \ file://runtime_src/core/tools/xbutil2/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \ file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 " COMPATIBLE_HOST = "^$" COMPATIBLE_HOST:aarch64 = ".*" S = "${UNPACKDIR}/git/src" inherit cmake pkgconfig BBCLASSEXTEND = "native nativesdk" PACKAGECONFIG ??= "aie" PACKAGECONFIG[aie] = ",,libxaiengine aiefal,libxaiengine aiefal" # util-linux is for libuuid-dev. DEPENDS = "libdrm opencl-headers ocl-icd opencl-clhpp boost util-linux git-replacement-native protobuf-native protobuf elfutils libffi rapidjson systemtap libdfx" RDEPENDS:${PN} = "bash ocl-icd boost-system boost-filesystem zocl (= ${PV})" EXTRA_OECMAKE += " \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_EXPORT_COMPILE_COMANDS=ON \ -DXRT_LIBDFX=true \ " EXTRA_OECMAKE .= "${@bb.utils.contains('PACKAGECONFIG', 'aie', ' -DXRT_AIE_BUILD=true', '', d)}" TARGET_CXXFLAGS .= "${@bb.utils.contains('PACKAGECONFIG', 'aie', ' -DXRT_ENABLE_AIE -DFAL_LINUX=on', '', d)}" # Systems with AIE also require libmetal, this is implemented in the dynamic-layers # See: meta-xilinx-core/dynamic-layers/openamp-layer/recipes-xrt/xrt_gt.bbappend # Note: If meta-openamp is not available, AIE will not be enabled. FILES_SOLIBSDEV = "" FILES:${PN} += "\ ${libdir}/lib*.so \ ${libdir}/lib*.so.* \ ${libdir}/ps_kernels_lib \ /lib/*.so* \ ${datadir}" INSANE_SKIP:${PN} += "dev-so" pkg_postinst_ontarget:${PN}() { #!/bin/sh if [ ! -e /etc/OpenCL/vendors/xilinx.icd ]; then echo "INFO: Creating ICD entry for Xilinx Platform" mkdir -p /etc/OpenCL/vendors echo "libxilinxopencl.so" > /etc/OpenCL/vendors/xilinx.icd chmod -R 755 /etc/OpenCL fi }