blob: 09f1fbcaeed550393da29bac9fe1a9e99f29a690 [file] [log] [blame]
Andrew Geissler748a4832020-07-24 16:24:21 -05001LICENSE = "Apache-2.0"
2LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
3
4SRC_URI = "\
Andrew Geisslerd688a012020-09-18 13:36:00 -05005 git://github.com/KhronosGroup/VK-GL-CTS.git;protocol=https;name=vk-gl-cts;nobranch=1 \
Andrew Geissler748a4832020-07-24 16:24:21 -05006 git://github.com/google/amber;protocol=https;destsuffix=git/external/amber/src;name=amber;branch=main \
Patrick Williams520786c2023-06-25 16:20:36 -05007 git://github.com/KhronosGroup/glslang.git;protocol=https;destsuffix=git/external/glslang/src;name=glslang;branch=main \
8 git://github.com/KhronosGroup/SPIRV-Headers.git;protocol=https;destsuffix=git/external/spirv-headers/src;name=spirv-headers;branch=main \
9 git://github.com/KhronosGroup/SPIRV-Tools.git;protocol=https;destsuffix=git/external/spirv-tools/src;name=spirv-tools;branch=main \
Andrew Geissler87f5cff2022-09-30 13:13:31 -050010 git://github.com/open-source-parsers/jsoncpp.git;protocol=https;destsuffix=git/external/jsoncpp/src;name=jsoncpp;branch=master \
11 git://github.com/KhronosGroup/Vulkan-Docs.git;protocol=https;destsuffix=git/external/vulkan-docs/src;name=vulkan-docs;branch=main \
Patrick Williams520786c2023-06-25 16:20:36 -050012 https://raw.githubusercontent.com/baldurk/renderdoc/v1.1/renderdoc/api/app/renderdoc_app.h;subdir=git/external/renderdoc/src;name=renderdoc \
13 git://github.com/Igalia/ESExtractor.git;protocol=https;destsuffix=git/external/ESExtractor/src;name=ESExtractor;branch=main \
Patrick Williams73bd93f2024-02-20 08:07:48 -060014 git://github.com/Igalia/vk_video_samples.git;protocol=https;destsuffix=git/external/nvidia-video-samples/src;name=video-parser;nobranch=1 \
Andrew Geissler748a4832020-07-24 16:24:21 -050015"
16
17S = "${WORKDIR}/git"
18
Andrew Geissler87f5cff2022-09-30 13:13:31 -050019SRCREV_FORMAT = "vk-gl-cts_amber_glslang_spirv-headers_spirv-tools_jsoncpp_vulkan-docs"
Andrew Geissler748a4832020-07-24 16:24:21 -050020
21S = "${WORKDIR}/git"
22
Andrew Geissler87f5cff2022-09-30 13:13:31 -050023inherit pkgconfig cmake features_check python3native qemu
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -050024
Patrick Williams8e7b46e2023-05-01 14:19:06 -050025ANY_OF_DISTRO_FEATURES += "opengl vulkan"
Andrew Geissler748a4832020-07-24 16:24:21 -050026
Andrew Geissler87f5cff2022-09-30 13:13:31 -050027DEPENDS += "python3-lxml-native libpng zlib virtual/libgles2 qemu-native"
Andrew Geissler748a4832020-07-24 16:24:21 -050028
Andrew Geissler87f5cff2022-09-30 13:13:31 -050029SRC_URI += " \
Andrew Geisslerc5535c92023-01-27 16:10:19 -060030 file://0001-vulkancts-Include-missing-cstdint.patch \
Andrew Geissler5199d832021-09-24 16:47:35 -050031 file://0001-use-library-sonames-for-linking.patch \
Andrew Geisslerf103a7f2021-05-07 16:09:40 -050032"
33
Patrick Williams213cb262021-08-07 19:21:33 -050034SRC_URI:append:libc-musl = "\
Andrew Geissler748a4832020-07-24 16:24:21 -050035 file://fix-musl.patch \
36"
Patrick Williams213cb262021-08-07 19:21:33 -050037DEPENDS:append:libc-musl = " libexecinfo"
Andrew Geissler748a4832020-07-24 16:24:21 -050038
Patrick Williams213cb262021-08-07 19:21:33 -050039SRC_URI:append:toolchain-clang = "\
Andrew Geissler748a4832020-07-24 16:24:21 -050040 file://fix-clang-private-operator.patch \
41"
42
Patrick Williams73bd93f2024-02-20 08:07:48 -060043EXTRA_OECMAKE:prepend:class-target = "-DCMAKE_CROSSCOMPILING_EMULATOR=${WORKDIR}/qemuwrapper -DWAYLAND_SCANNER=${STAGING_BINDIR_NATIVE}/wayland-scanner -DWAYLAND_PROTOCOLS_DIR=${STAGING_DATADIR}/wayland-protocols -DAMBER_DISABLE_WERROR=ON"
Andrew Geissler87f5cff2022-09-30 13:13:31 -050044
Andrew Geissler5199d832021-09-24 16:47:35 -050045# The best thing for the user to do is to not specify any of the following
46# PACKAGECONFIGs (i.e. leave it blank) which tells the project to do its own
47# probing and build what it thinks is appropriate.
48# However, if you want, you can specify one of the following PACKAGECONFIGs
49# to override this behaviour.
50PACKAGECONFIG ??= ""
51PACKAGECONFIG[surfaceless] = "-DDEQP_TARGET=surfaceless,,,,,wayland x11_egl x11_glx x11_egl_glx"
Andrew Geissler87f5cff2022-09-30 13:13:31 -050052PACKAGECONFIG[wayland] = "-DDEQP_TARGET=wayland,,wayland-native wayland wayland-protocols,,,surfaceless x11_egl x11_glx x11_egl_glx"
Andrew Geissler5199d832021-09-24 16:47:35 -050053PACKAGECONFIG[x11_egl] = "-DDEQP_TARGET=x11_egl,,virtual/libx11 virtual/egl,,,surfaceless wayland x11_glx x11_egl_glx"
54PACKAGECONFIG[x11_glx] = "-DDEQP_TARGET=x11_glx,,virtual/libx11,,,surfaceless wayland x11_egl x11_egl_glx"
55PACKAGECONFIG[x11_egl_glx] = "-DDEQP_TARGET=x11_glx,,virtual/libx11 virtual/egl,,,surfaceless wayland x11_egl x11_glx"
56
Andrew Geissler87f5cff2022-09-30 13:13:31 -050057do_configure:append() {
58 # Write out a qemu wrapper that will be used by cmake
59 # so that it can run target helper binaries through that.
60 qemu_binary="${@qemu_wrapper_cmdline(d, d.getVar('STAGING_DIR_HOST'), [d.expand('${STAGING_DIR_HOST}${libdir}'),d.expand('${STAGING_DIR_HOST}${base_libdir}')])}"
61 cat > ${WORKDIR}/qemuwrapper << EOF
62#!/bin/sh
63$qemu_binary "\$@"
64EOF
65 chmod +x ${WORKDIR}/qemuwrapper
66}
67
Andrew Geissler5199d832021-09-24 16:47:35 -050068python __anonymous() {
69 # if the user doesn't specify any PACKAGECONFIG then the cts build system
70 # is going to probe the sysroot to try to figure out what to build
71 # in this case we try to guess whether the user is building for wayland
72 # or x11 and add the required dependencies automatically
73 distrofeatures = (d.getVar("DISTRO_FEATURES") or "")
74 if not bb.utils.contains_any("PACKAGECONFIG", ["surfaceless", "wayland", "x11_egl", "x11_glx", "x11_egl_glx"], True, False, d):
75 if "wayland" in distrofeatures:
Andrew Geissler5082cc72023-09-11 08:41:39 -040076 d.appendVar("DEPENDS", " wayland-native ${MLPREFIX}wayland ${MLPREFIX}wayland-protocols")
Andrew Geissler5199d832021-09-24 16:47:35 -050077 if "x11" in distrofeatures:
Andrew Geissler5082cc72023-09-11 08:41:39 -040078 d.appendVar("DEPENDS", " virtual/${MLPREFIX}libx11 virtual/${MLPREFIX}egl ")
Andrew Geissler5199d832021-09-24 16:47:35 -050079}
Andrew Geissler748a4832020-07-24 16:24:21 -050080
81CTSDIR = "/usr/lib/${BPN}"
82
Patrick Williams213cb262021-08-07 19:21:33 -050083FILES:${PN} += "${CTSDIR}"