Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ LIC_FILES_CHKSUM = "file://NO.LOGIN.BINARY.LICENSE.QTI.pdf;md5=4ceffe94cb40cdce6

# no top-level dir in the archive, unpack to subdir to prevent UNPACKDIR pollution
SRC_URI = "https://qartifactory-edge.qualcomm.com/artifactory/qsc_releases/software/chip/component/gfx-adreno.le.0.0/${PBT_BUILD_DATE}/prebuilt_yocto/${BPN}_${PV}_armv8a.tar.gz;subdir=${BP}"
PBT_BUILD_DATE = "260728"
SRC_URI[sha256sum] = "11c141b6bed7cad32a7b171bb71b886b299e0c6bc6407a1e542b7c57d4bd798d"
PBT_BUILD_DATE = "260903"
SRC_URI[sha256sum] = "c699bfcdf69f3c4c272d2b5614d0405619950369ae2cdced6a0930f499ee30f5"

# These are listed here in order to identify RDEPENDS
DEPENDS += " glib-2.0 libdrm \
Expand Down Expand Up @@ -98,7 +98,12 @@ do_install () {
cp ${S}/etc/modprobe.d/qcom-adreno.conf ${D}/${sysconfdir}/modprobe.d/qcom-adreno.conf
}

FILES:${PN}-common = "${libdir}/libllvm-*.so.* \
FILES:${PN}-common = "${libdir}/libQCGPUCompiler.so.* \
Comment thread
lumag marked this conversation as resolved.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

libQCGPUCompiler.so.1 and libqclccompiler.so.1 dlopen "libQCGPUCompilerCore.so" (unversioned), but the tarball only ships libQCGPUCompilerCore.so.1 with no .so symlink.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They need to use versioned name in dlopen() (how did you catch it?)

${libdir}/libQCGPUCompilerCore.so.* \
${libdir}/libqclccompiler.so.* \
${libdir}/libqgpucompiler-lgc.so.* \
${libdir}/libqgpucompilercore-lgc.so.* \
${libdir}/libqclccompiler-lgc.so.* \
${libdir}/libgsl.so.1 \
${libdir}/libadreno_utils.so.1 \
${libdir}/libq3dtools_*.so.* \
Expand Down
Loading