blob: 72005636eae6fa04b4e7351613e9e197652b1a05 [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 \
14 git://github.com/nvpro-samples/vk_video_samples.git;protocol=https;destsuffix=git/external/video-parser/src;name=video-parser;branch=main \
Andrew Geisslerc5535c92023-01-27 16:10:19 -060015 file://gen-framework-path.patch \
Andrew Geissler748a4832020-07-24 16:24:21 -050016"
17
18S = "${WORKDIR}/git"
19
Andrew Geissler87f5cff2022-09-30 13:13:31 -050020SRCREV_FORMAT = "vk-gl-cts_amber_glslang_spirv-headers_spirv-tools_jsoncpp_vulkan-docs"
Andrew Geissler748a4832020-07-24 16:24:21 -050021
22S = "${WORKDIR}/git"
23
Andrew Geissler87f5cff2022-09-30 13:13:31 -050024inherit pkgconfig cmake features_check python3native qemu
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -050025
Patrick Williams8e7b46e2023-05-01 14:19:06 -050026ANY_OF_DISTRO_FEATURES += "opengl vulkan"
Andrew Geissler748a4832020-07-24 16:24:21 -050027
Andrew Geissler87f5cff2022-09-30 13:13:31 -050028DEPENDS += "python3-lxml-native libpng zlib virtual/libgles2 qemu-native"
Andrew Geissler748a4832020-07-24 16:24:21 -050029
Andrew Geissler87f5cff2022-09-30 13:13:31 -050030SRC_URI += " \
Andrew Geisslerc5535c92023-01-27 16:10:19 -060031 file://0001-vulkancts-Include-missing-cstdint.patch \
Andrew Geissler5199d832021-09-24 16:47:35 -050032 file://0001-use-library-sonames-for-linking.patch \
Andrew Geisslerf103a7f2021-05-07 16:09:40 -050033"
34
Patrick Williams213cb262021-08-07 19:21:33 -050035SRC_URI:append:libc-musl = "\
Andrew Geissler748a4832020-07-24 16:24:21 -050036 file://fix-musl.patch \
37"
Patrick Williams213cb262021-08-07 19:21:33 -050038DEPENDS:append:libc-musl = " libexecinfo"
Andrew Geissler748a4832020-07-24 16:24:21 -050039
Patrick Williams213cb262021-08-07 19:21:33 -050040SRC_URI:append:toolchain-clang = "\
Andrew Geissler748a4832020-07-24 16:24:21 -050041 file://fix-clang-private-operator.patch \
42"
43
Andrew Geissler87f5cff2022-09-30 13:13:31 -050044EXTRA_OECMAKE:prepend:class-target = "-DCMAKE_CROSSCOMPILING_EMULATOR=${WORKDIR}/qemuwrapper -DWAYLAND_SCANNER=${STAGING_BINDIR_NATIVE}/wayland-scanner -DWAYLAND_PROTOCOLS_DIR=${STAGING_DATADIR}/wayland-protocols"
45
Andrew Geissler5199d832021-09-24 16:47:35 -050046# The best thing for the user to do is to not specify any of the following
47# PACKAGECONFIGs (i.e. leave it blank) which tells the project to do its own
48# probing and build what it thinks is appropriate.
49# However, if you want, you can specify one of the following PACKAGECONFIGs
50# to override this behaviour.
51PACKAGECONFIG ??= ""
52PACKAGECONFIG[surfaceless] = "-DDEQP_TARGET=surfaceless,,,,,wayland x11_egl x11_glx x11_egl_glx"
Andrew Geissler87f5cff2022-09-30 13:13:31 -050053PACKAGECONFIG[wayland] = "-DDEQP_TARGET=wayland,,wayland-native wayland wayland-protocols,,,surfaceless x11_egl x11_glx x11_egl_glx"
Andrew Geissler5199d832021-09-24 16:47:35 -050054PACKAGECONFIG[x11_egl] = "-DDEQP_TARGET=x11_egl,,virtual/libx11 virtual/egl,,,surfaceless wayland x11_glx x11_egl_glx"
55PACKAGECONFIG[x11_glx] = "-DDEQP_TARGET=x11_glx,,virtual/libx11,,,surfaceless wayland x11_egl x11_egl_glx"
56PACKAGECONFIG[x11_egl_glx] = "-DDEQP_TARGET=x11_glx,,virtual/libx11 virtual/egl,,,surfaceless wayland x11_egl x11_glx"
57
Andrew Geissler87f5cff2022-09-30 13:13:31 -050058do_configure:append() {
59 # Write out a qemu wrapper that will be used by cmake
60 # so that it can run target helper binaries through that.
61 qemu_binary="${@qemu_wrapper_cmdline(d, d.getVar('STAGING_DIR_HOST'), [d.expand('${STAGING_DIR_HOST}${libdir}'),d.expand('${STAGING_DIR_HOST}${base_libdir}')])}"
62 cat > ${WORKDIR}/qemuwrapper << EOF
63#!/bin/sh
64$qemu_binary "\$@"
65EOF
66 chmod +x ${WORKDIR}/qemuwrapper
67}
68
Andrew Geissler5199d832021-09-24 16:47:35 -050069python __anonymous() {
70 # if the user doesn't specify any PACKAGECONFIG then the cts build system
71 # is going to probe the sysroot to try to figure out what to build
72 # in this case we try to guess whether the user is building for wayland
73 # or x11 and add the required dependencies automatically
74 distrofeatures = (d.getVar("DISTRO_FEATURES") or "")
75 if not bb.utils.contains_any("PACKAGECONFIG", ["surfaceless", "wayland", "x11_egl", "x11_glx", "x11_egl_glx"], True, False, d):
76 if "wayland" in distrofeatures:
Andrew Geissler5082cc72023-09-11 08:41:39 -040077 d.appendVar("DEPENDS", " wayland-native ${MLPREFIX}wayland ${MLPREFIX}wayland-protocols")
Andrew Geissler5199d832021-09-24 16:47:35 -050078 if "x11" in distrofeatures:
Andrew Geissler5082cc72023-09-11 08:41:39 -040079 d.appendVar("DEPENDS", " virtual/${MLPREFIX}libx11 virtual/${MLPREFIX}egl ")
Andrew Geissler5199d832021-09-24 16:47:35 -050080}
Andrew Geissler748a4832020-07-24 16:24:21 -050081
82CTSDIR = "/usr/lib/${BPN}"
83
Patrick Williams213cb262021-08-07 19:21:33 -050084FILES:${PN} += "${CTSDIR}"