summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-10-07 16:30:43 +0200
committerDudemanguy <random342@airmail.cc>2023-10-07 17:47:57 +0000
commit9d8dfc7b49380b8c03546ed4fad2385c42438a50 (patch)
treeb5d3a0d234a38e567dbed706efb9c188bd508dfe
parent71ce0cb71f15f9e6ff7ed08b0b1637637c838451 (diff)
downloadmpv-9d8dfc7b49380b8c03546ed4fad2385c42438a50.tar.bz2
mpv-9d8dfc7b49380b8c03546ed4fad2385c42438a50.tar.xz
ci/mingw: use vulkan-loader v1.3.266
Upstream has been changing buildsystem and current vulkan.pc is not functional with custom prefix path. Rollback to older version until it is fixed. See: https://github.com/KhronosGroup/Vulkan-Loader/issues/1318 https://github.com/KhronosGroup/Vulkan-Loader/issues/1319
-rwxr-xr-xci/build-mingw64.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/build-mingw64.sh b/ci/build-mingw64.sh
index 617662f111..d9d050b4bb 100755
--- a/ci/build-mingw64.sh
+++ b/ci/build-mingw64.sh
@@ -162,7 +162,7 @@ _spirv_cross () {
_spirv_cross_mark=lib/libspirv-cross-c-shared.dll.a
_vulkan_headers () {
- [ -d Vulkan-Headers ] || $gitclone https://github.com/KhronosGroup/Vulkan-Headers
+ [ -d Vulkan-Headers ] || $gitclone https://github.com/KhronosGroup/Vulkan-Headers -b v1.3.266
builddir Vulkan-Headers
cmake .. "${cmake_args[@]}"
makeplusinstall
@@ -171,7 +171,7 @@ _vulkan_headers () {
_vulkan_headers_mark=include/vulkan/vulkan.h
_vulkan_loader () {
- [ -d Vulkan-Loader ] || $gitclone https://github.com/KhronosGroup/Vulkan-Loader
+ [ -d Vulkan-Loader ] || $gitclone https://github.com/KhronosGroup/Vulkan-Loader -b v1.3.266
builddir Vulkan-Loader
cmake .. "${cmake_args[@]}" \
-DENABLE_WERROR=OFF