diff options
Diffstat (limited to 'meta/recipes-graphics/vulkan')
| -rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-headers_1.3.250.0.bb (renamed from meta/recipes-graphics/vulkan/vulkan-headers_1.3.243.0.bb) | 2 | ||||
| -rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-loader_1.3.250.0.bb (renamed from meta/recipes-graphics/vulkan/vulkan-loader_1.3.243.0.bb) | 4 | ||||
| -rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-tools/0001-scripts-CMakeLists.txt-do-not-make-special-arrangeme.patch | 29 | ||||
| -rw-r--r-- | meta/recipes-graphics/vulkan/vulkan-tools_1.3.250.0.bb (renamed from meta/recipes-graphics/vulkan/vulkan-tools_1.3.243.0.bb) | 6 |
4 files changed, 36 insertions, 5 deletions
diff --git a/meta/recipes-graphics/vulkan/vulkan-headers_1.3.243.0.bb b/meta/recipes-graphics/vulkan/vulkan-headers_1.3.250.0.bb index 6ddc35e5d8..2970767ff3 100644 --- a/meta/recipes-graphics/vulkan/vulkan-headers_1.3.243.0.bb +++ b/meta/recipes-graphics/vulkan/vulkan-headers_1.3.250.0.bb | |||
| @@ -11,7 +11,7 @@ LICENSE = "Apache-2.0" | |||
| 11 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" | 11 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" |
| 12 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Headers.git;branch=main;protocol=https" | 12 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Headers.git;branch=main;protocol=https" |
| 13 | 13 | ||
| 14 | SRCREV = "65ad768d8603671fc1085fe115019e72a595ced8" | 14 | SRCREV = "9e61870ecbd32514113b467e0a0c46f60ed222c7" |
| 15 | 15 | ||
| 16 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
| 17 | 17 | ||
diff --git a/meta/recipes-graphics/vulkan/vulkan-loader_1.3.243.0.bb b/meta/recipes-graphics/vulkan/vulkan-loader_1.3.250.0.bb index 20128667f1..456c973406 100644 --- a/meta/recipes-graphics/vulkan/vulkan-loader_1.3.243.0.bb +++ b/meta/recipes-graphics/vulkan/vulkan-loader_1.3.250.0.bb | |||
| @@ -9,8 +9,8 @@ SECTION = "libs" | |||
| 9 | 9 | ||
| 10 | LICENSE = "Apache-2.0" | 10 | LICENSE = "Apache-2.0" |
| 11 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7dbefed23242760aa3475ee42801c5ac" | 11 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7dbefed23242760aa3475ee42801c5ac" |
| 12 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Loader.git;branch=sdk-1.3.243;protocol=https" | 12 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Loader.git;branch=sdk-1.3.250;protocol=https" |
| 13 | SRCREV = "22407d7804f111fbc0e31fa0db592d658e19ae8b" | 13 | SRCREV = "f372068d09fc13bcf54b8c81274f37aa5f46aea3" |
| 14 | 14 | ||
| 15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
| 16 | 16 | ||
diff --git a/meta/recipes-graphics/vulkan/vulkan-tools/0001-scripts-CMakeLists.txt-do-not-make-special-arrangeme.patch b/meta/recipes-graphics/vulkan/vulkan-tools/0001-scripts-CMakeLists.txt-do-not-make-special-arrangeme.patch new file mode 100644 index 0000000000..6b70a1e62d --- /dev/null +++ b/meta/recipes-graphics/vulkan/vulkan-tools/0001-scripts-CMakeLists.txt-do-not-make-special-arrangeme.patch | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | From 9060e916ca05d34b56c62f2be0b4a77dd104e2aa Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Alexander Kanavin <alex@linutronix.de> | ||
| 3 | Date: Fri, 2 Jun 2023 14:13:00 +0200 | ||
| 4 | Subject: [PATCH] scripts/CMakeLists.txt: append to CMAKE_FIND_ROOT_PATH | ||
| 5 | instead of replacing it | ||
| 6 | |||
| 7 | Resetting CMAKE_FIND_ROOT_PATH in particular breaks builds in Yocto | ||
| 8 | (which is a major cross compiling framework). | ||
| 9 | |||
| 10 | Upstream-Status: Submitted [https://github.com/KhronosGroup/Vulkan-Tools/pull/808] | ||
| 11 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
| 12 | |||
| 13 | --- | ||
| 14 | scripts/CMakeLists.txt | 2 +- | ||
| 15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 16 | |||
| 17 | diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt | ||
| 18 | index 5b979d43..19a58bf9 100644 | ||
| 19 | --- a/scripts/CMakeLists.txt | ||
| 20 | +++ b/scripts/CMakeLists.txt | ||
| 21 | @@ -114,7 +114,7 @@ if (MOLTENVK_REPO_ROOT) | ||
| 22 | endif() | ||
| 23 | |||
| 24 | if (CMAKE_CROSSCOMPILING) | ||
| 25 | - set(CMAKE_FIND_ROOT_PATH ${CMAKE_PREFIX_PATH} PARENT_SCOPE) | ||
| 26 | + set(CMAKE_FIND_ROOT_PATH ${CMAKE_FIND_ROOT_PATH} ${CMAKE_PREFIX_PATH} PARENT_SCOPE) | ||
| 27 | else() | ||
| 28 | set(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} PARENT_SCOPE) | ||
| 29 | endif() | ||
diff --git a/meta/recipes-graphics/vulkan/vulkan-tools_1.3.243.0.bb b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.250.0.bb index dfdd716abd..0346b380ee 100644 --- a/meta/recipes-graphics/vulkan/vulkan-tools_1.3.243.0.bb +++ b/meta/recipes-graphics/vulkan/vulkan-tools_1.3.250.0.bb | |||
| @@ -6,8 +6,10 @@ SECTION = "libs" | |||
| 6 | 6 | ||
| 7 | LICENSE = "Apache-2.0" | 7 | LICENSE = "Apache-2.0" |
| 8 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" | 8 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" |
| 9 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Tools.git;branch=sdk-1.3.243;protocol=https" | 9 | SRC_URI = "git://github.com/KhronosGroup/Vulkan-Tools.git;branch=main;protocol=https \ |
| 10 | SRCREV = "18bdf5565f5d02831869785cbf758fa7b295b7d5" | 10 | file://0001-scripts-CMakeLists.txt-do-not-make-special-arrangeme.patch \ |
| 11 | " | ||
| 12 | SRCREV = "695887a994ef9cc00a7aa3f9c00b31a56ea79534" | ||
| 11 | 13 | ||
| 12 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
| 13 | 15 | ||
