diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-12-06 19:09:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-09 12:00:43 +0000 |
commit | 9ad29096a811ba7f5de3bcac0ac672a3d97426ed (patch) | |
tree | c78b11780254f6f5f2b8d3f29d272d865876fa85 /meta/recipes-graphics/vulkan/vulkan-loader_1.1.126.0.bb | |
parent | 132b37ff52c464ca10301581f42dc77d14ec81a5 (diff) | |
download | poky-9ad29096a811ba7f5de3bcac0ac672a3d97426ed.tar.gz |
vulkan: update to 1.1.126
Disable assembly for vulkan-loader, as it tries to execute
a target binary (previously it would fail to detect a working
assembler and do the same fallback quietly).
(From OE-Core rev: fe2db77803846faa29226b821aaa985e009ac3cc)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/vulkan/vulkan-loader_1.1.126.0.bb')
-rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-loader_1.1.126.0.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-loader_1.1.126.0.bb b/meta/recipes-graphics/vulkan/vulkan-loader_1.1.126.0.bb new file mode 100644 index 0000000000..504cf85a2b --- /dev/null +++ b/meta/recipes-graphics/vulkan/vulkan-loader_1.1.126.0.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | SUMMARY = "3D graphics and compute API common loader" | ||
2 | DESCRIPTION = "Vulkan is a new generation graphics and compute API \ | ||
3 | that provides efficient access to modern GPUs. These packages \ | ||
4 | provide only the common vendor-agnostic library loader, headers and \ | ||
5 | the vulkaninfo utility." | ||
6 | HOMEPAGE = "https://www.khronos.org/vulkan/" | ||
7 | BUGTRACKER = "https://github.com/KhronosGroup/Vulkan-Loader" | ||
8 | SECTION = "libs" | ||
9 | |||
10 | LICENSE = "Apache-2.0" | ||
11 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7dbefed23242760aa3475ee42801c5ac" | ||
12 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Loader.git;branch=sdk-1.1.126" | ||
13 | SRCREV = "4adad4ff705fa76f9edb2d37cb57e593decb60ed" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | REQUIRED_DISTRO_FEATURES = "vulkan" | ||
18 | |||
19 | inherit cmake features_check | ||
20 | ANY_OF_DISTRO_FEATURES = "x11 wayland" | ||
21 | |||
22 | DEPENDS += "vulkan-headers" | ||
23 | |||
24 | EXTRA_OECMAKE = "\ | ||
25 | -DBUILD_TESTS=OFF \ | ||
26 | -DPYTHON_EXECUTABLE=${HOSTTOOLS_DIR}/python3 \ | ||
27 | -DASSEMBLER_WORKS=FALSE \ | ||
28 | " | ||
29 | |||
30 | # must choose x11 or wayland or both | ||
31 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'wayland x11', d)}" | ||
32 | |||
33 | PACKAGECONFIG[x11] = "-DBUILD_WSI_XLIB_SUPPORT=ON -DBUILD_WSI_XCB_SUPPORT=ON, -DBUILD_WSI_XLIB_SUPPORT=OFF -DBUILD_WSI_XCB_SUPPORT=OFF, libxcb libx11 libxrandr" | ||
34 | PACKAGECONFIG[wayland] = "-DBUILD_WSI_WAYLAND_SUPPORT=ON, -DBUILD_WSI_WAYLAND_SUPPORT=OFF, wayland" | ||
35 | |||
36 | RRECOMMENDS_${PN} = "mesa-vulkan-drivers" | ||
37 | |||
38 | UPSTREAM_CHECK_GITTAGREGEX = "sdk-(?P<pver>\d+(\.\d+)+)" | ||