From a11c4931ff11020db8adf65d5d08d690933d835f Mon Sep 17 00:00:00 2001 From: Yogesh Tyagi Date: Mon, 9 Feb 2026 00:17:17 +0800 Subject: embree, openvkl, ospray: Skip buildpaths QA check Add INSANE_SKIP for buildpaths QA check in RenderKit recipes that use ISPC for code generation. ISPC (Intel SPMD Program Compiler) embeds absolute build paths in generated binaries and debug information by design. This is necessary for: 1. Debug information accuracy - ISPC generates C++ wrapper code with #line directives pointing to original .ispc source files 2. Error reporting during kernel execution - backtraces reference original source locations 3. Profiling support - performance tools need source file locations Affected packages: - embree: ISPC kernels for ray tracing primitives - openvkl: ISPC kernels for volume rendering - ospray: ISPC kernels for rendering algorithms This resolves QA errors that prevent SDK image builds when RenderKit stack is included. Signed-off-by: Yogesh Tyagi --- dynamic-layers/clang-layer/recipes-oneapi/embree/embree_4.4.0.bb | 3 +++ dynamic-layers/clang-layer/recipes-oneapi/openvkl/openvkl_2.0.1.bb | 3 +++ dynamic-layers/clang-layer/recipes-oneapi/ospray/ospray_3.2.0.bb | 2 ++ 3 files changed, 8 insertions(+) diff --git a/dynamic-layers/clang-layer/recipes-oneapi/embree/embree_4.4.0.bb b/dynamic-layers/clang-layer/recipes-oneapi/embree/embree_4.4.0.bb index ebd45c60..b633bc49 100644 --- a/dynamic-layers/clang-layer/recipes-oneapi/embree/embree_4.4.0.bb +++ b/dynamic-layers/clang-layer/recipes-oneapi/embree/embree_4.4.0.bb @@ -11,6 +11,9 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57 \ inherit pkgconfig cmake +# ISPC generates binaries with embedded build paths +INSANE_SKIP:${PN}-dbg += "buildpaths" + SRC_URI = "git://github.com/embree/embree.git;protocol=https;branch=master" SRCREV = "ff9381774dc99fea81a932ad276677aad6a3d4dd" diff --git a/dynamic-layers/clang-layer/recipes-oneapi/openvkl/openvkl_2.0.1.bb b/dynamic-layers/clang-layer/recipes-oneapi/openvkl/openvkl_2.0.1.bb index b458bb4d..efd15d9f 100644 --- a/dynamic-layers/clang-layer/recipes-oneapi/openvkl/openvkl_2.0.1.bb +++ b/dynamic-layers/clang-layer/recipes-oneapi/openvkl/openvkl_2.0.1.bb @@ -40,3 +40,6 @@ PACKAGES =+ "${PN}-examples" FILES:${PN}-examples = "\ ${bindir} \ " + +INSANE_SKIP:${PN}-src += "buildpaths" +INSANE_SKIP:${PN}-dbg += "buildpaths" \ No newline at end of file diff --git a/dynamic-layers/clang-layer/recipes-oneapi/ospray/ospray_3.2.0.bb b/dynamic-layers/clang-layer/recipes-oneapi/ospray/ospray_3.2.0.bb index dc8f7335..99af9010 100644 --- a/dynamic-layers/clang-layer/recipes-oneapi/ospray/ospray_3.2.0.bb +++ b/dynamic-layers/clang-layer/recipes-oneapi/ospray/ospray_3.2.0.bb @@ -36,4 +36,6 @@ FILES:${PN}-apps = "\ ${bindir} \ " +INSANE_SKIP:${PN}-src += "buildpaths" +INSANE_SKIP:${PN}-dbg += "buildpaths" UPSTREAM_CHECK_GITTAGREGEX = "^v(?P(\d+(\.\d+)+))$" -- cgit v1.2.3-54-g00ecf