aedi: update vulkan-loader to 1.3.268

This commit is contained in:
alexey.lysiuk 2023-10-18 12:00:22 +03:00
parent 266de716f0
commit d7e88443fc
1 changed files with 11 additions and 6 deletions

View File

@ -389,24 +389,29 @@ class VulkanHeadersTarget(base.CMakeStaticDependencyTarget):
class VulkanLoaderTarget(base.CMakeStaticDependencyTarget): class VulkanLoaderTarget(base.CMakeStaticDependencyTarget):
def __init__(self, name='vulkan-loader'): def __init__(self, name='vulkan-loader'):
super().__init__(name) super().__init__(name)
self.version = '1.3.268'
def prepare_source(self, state: BuildState): def prepare_source(self, state: BuildState):
state.download_source( state.download_source(
# Version should match with the current MoltenVK release # Version should match with the current MoltenVK release
'https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v1.3.261.tar.gz', f'https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/v{self.version}.tar.gz',
'85d13004c81b032baf7cc4c2de0b2cb57072a86855d7ca7fc9a813621da275ba') 'bddabbf8ebbbd38bdb58dfb50fbd94dbd84b8c39c34045e13c9ad46bd3cae167')
def configure(self, state: BuildState): def configure(self, state: BuildState):
opts = state.options opts = state.options
opts['BUILD_STATIC_LOADER'] = 'YES' opts['BUILD_STATIC_LOADER'] = 'YES'
opts['CMAKE_INSTALL_SYSCONFDIR'] = '/usr/local/etc' opts['CMAKE_INSTALL_SYSCONFDIR'] = '/usr/local/etc'
opts['USE_GAS'] = 'OFF' # cross-compilation fails otherwise
super().configure(state) super().configure(state)
@staticmethod def post_build(self, state: BuildState):
def _process_pkg_config(pcfile: Path, line: str) -> str: lib_path = state.install_path / 'lib'
return line.replace('\n', ' -framework CoreFoundation\n') if line.startswith('Libs.private:') else line os.makedirs(lib_path, exist_ok=True)
shutil.copy(state.build_path / 'loader/libvulkan.a', lib_path)
self.write_pc_file(state, filename='vulkan.pc',
name='Vulkan-Loader', description='Vulkan Loader', version=self.version,
libs='-lvulkan', libs_private='-lc++ -framework CoreFoundation')
class XmpTarget(base.ConfigureMakeStaticDependencyTarget): class XmpTarget(base.ConfigureMakeStaticDependencyTarget):