From d1cb56020f2870a0308b6742a7befbe5182725f5 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Thu, 17 Aug 2023 12:45:16 +0300 Subject: [PATCH] aedi: update vulkan-loader to 1.3.261 --- aedi/target/library_tier2.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aedi/target/library_tier2.py b/aedi/target/library_tier2.py index bf2970e7..33183be4 100644 --- a/aedi/target/library_tier2.py +++ b/aedi/target/library_tier2.py @@ -393,13 +393,14 @@ class VulkanLoaderTarget(base.CMakeStaticDependencyTarget): def prepare_source(self, state: BuildState): state.download_source( # Version should match with the current MoltenVK release - 'https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.3.250.tar.gz', - '4e4bf5bb93a43686d36218309804d21be6070d344ccd0c73cf695cb66a1e352b') + 'https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.3.261.tar.gz', + '85d13004c81b032baf7cc4c2de0b2cb57072a86855d7ca7fc9a813621da275ba') def configure(self, state: BuildState): opts = state.options opts['BUILD_STATIC_LOADER'] = 'YES' opts['CMAKE_INSTALL_SYSCONFDIR'] = '/usr/local/etc' + opts['USE_GAS'] = 'OFF' # cross-compilation fails otherwise super().configure(state)