summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/glslang
diff options
context:
space:
mode:
authorAnuj Mittal <anuj.mittal@intel.com>2023-11-21 13:29:47 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-23 12:46:42 +0000
commit97170cf8ea1b5ff509c78b85a1c9f1039e8895bf (patch)
tree2f9670da8010d4fc92963a5c41b00653a9ed5573 /meta/recipes-graphics/glslang
parent541868630f0beae4644046393ffc4c394292fdd5 (diff)
downloadpoky-97170cf8ea1b5ff509c78b85a1c9f1039e8895bf.tar.gz
vulkan: upgrade 1.3.261.1 -> 1.3.268.0
* Allow glslang to find external spirv-tools to build. * Vulkan-validation-layers has been split. So a new recipe Vulkan-Utility-Libraries has been added and vulkan-validation-layers now depends on it. (From OE-Core rev: 63bdeb74b133840f9d6f55093bf16f5a8a5d0ab7) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/glslang')
-rw-r--r--meta/recipes-graphics/glslang/glslang_1.3.268.0.bb (renamed from meta/recipes-graphics/glslang/glslang_1.3.261.1.bb)6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-graphics/glslang/glslang_1.3.261.1.bb b/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb
index e607045148..033830ba36 100644
--- a/meta/recipes-graphics/glslang/glslang_1.3.261.1.bb
+++ b/meta/recipes-graphics/glslang/glslang_1.3.268.0.bb
@@ -8,13 +8,14 @@ HOMEPAGE = "https://www.khronos.org/opengles/sdk/tools/Reference-Compiler"
8LICENSE = "BSD-3-Clause & BSD-2-Clause & MIT & Apache-2.0 & GPL-3-with-bison-exception" 8LICENSE = "BSD-3-Clause & BSD-2-Clause & MIT & Apache-2.0 & GPL-3-with-bison-exception"
9LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2a2b5acd7bc4844964cfda45fe807dc3" 9LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2a2b5acd7bc4844964cfda45fe807dc3"
10 10
11SRCREV = "76b52ebf77833908dc4c0dd6c70a9c357ac720bd" 11SRCREV = "36d08c0d940cf307a23928299ef52c7970d8cee6"
12SRC_URI = "git://github.com/KhronosGroup/glslang.git;protocol=https;branch=main \ 12SRC_URI = "git://github.com/KhronosGroup/glslang.git;protocol=https;branch=main \
13 file://0001-generate-glslang-pkg-config.patch \ 13 file://0001-generate-glslang-pkg-config.patch \
14 " 14 "
15PE = "1" 15PE = "1"
16# These recipes need to be updated in lockstep with each other: 16# These recipes need to be updated in lockstep with each other:
17# glslang, vulkan-headers, vulkan-loader, vulkan-tools, spirv-headers, spirv-tools 17# glslang, vulkan-headers, vulkan-loader, vulkan-tools, spirv-headers, spirv-tools
18# vulkan-validation-layers, vulkan-utility-libraries.
18# The tags versions should always be sdk-x.y.z, as this is what 19# The tags versions should always be sdk-x.y.z, as this is what
19# upstream considers a release. 20# upstream considers a release.
20UPSTREAM_CHECK_GITTAGREGEX = "sdk-(?P<pver>\d+(\.\d+)+)" 21UPSTREAM_CHECK_GITTAGREGEX = "sdk-(?P<pver>\d+(\.\d+)+)"
@@ -22,12 +23,15 @@ S = "${WORKDIR}/git"
22 23
23inherit cmake python3native 24inherit cmake python3native
24 25
26DEPENDS = "spirv-tools"
27
25EXTRA_OECMAKE = " \ 28EXTRA_OECMAKE = " \
26 -DCMAKE_BUILD_TYPE=Release \ 29 -DCMAKE_BUILD_TYPE=Release \
27 -DBUILD_SHARED_LIBS=ON \ 30 -DBUILD_SHARED_LIBS=ON \
28 -DENABLE_PCH=OFF \ 31 -DENABLE_PCH=OFF \
29 -DENABLE_CTEST=OFF \ 32 -DENABLE_CTEST=OFF \
30 -DBUILD_EXTERNAL=OFF \ 33 -DBUILD_EXTERNAL=OFF \
34 -DALLOW_EXTERNAL_SPIRV_TOOLS=ON \
31" 35"
32 36
33BBCLASSEXTEND = "native nativesdk" 37BBCLASSEXTEND = "native nativesdk"