Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

externals: Update various dependencies #426

Merged
merged 8 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeModules/DownloadExternals.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function(download_qt_configuration prefix_out target host type arch arch_path ba

if (NOT EXISTS "${prefix}")
message(STATUS "Downloading Qt binaries for ${target}:${host}:${type}:${arch}:${arch_path}")
set(AQT_PREBUILD_BASE_URL "https://github.com/miurahr/aqtinstall/releases/download/v3.1.17")
set(AQT_PREBUILD_BASE_URL "https://github.com/miurahr/aqtinstall/releases/download/v3.1.18")
if (WIN32)
set(aqt_path "${base_path}/aqt.exe")
if (NOT EXISTS "${aqt_path}")
Expand Down Expand Up @@ -166,7 +166,7 @@ function(download_moltenvk)
set(MOLTENVK_TAR "${CMAKE_BINARY_DIR}/externals/MoltenVK.tar")
if (NOT EXISTS ${MOLTENVK_DIR})
if (NOT EXISTS ${MOLTENVK_TAR})
file(DOWNLOAD https://github.com/KhronosGroup/MoltenVK/releases/download/v1.2.9/MoltenVK-all.tar
file(DOWNLOAD https://github.com/KhronosGroup/MoltenVK/releases/download/v1.2.10-rc2/MoltenVK-all.tar
${MOLTENVK_TAR} SHOW_PROGRESS)
endif()

Expand Down
2 changes: 1 addition & 1 deletion externals/catch2
Submodule catch2 updated 67 files
+1 −8 .github/workflows/mac-builds.yml
+2 −1 .gitignore
+1 −1 CMakeLists.txt
+1 −1 MODULE.bazel
+3 −3 WORKSPACE.bazel
+1 −1 docs/assertions.md
+1 −0 docs/cmake-integration.md
+13 −0 docs/deprecations.md
+1 −0 docs/list-of-examples.md
+27 −9 docs/matchers.md
+0 −24 docs/other-macros.md
+21 −0 docs/release-notes.md
+1 −1 docs/test-cases-and-sections.md
+133 −4 docs/test-fixtures.md
+74 −0 examples/111-Fix-PersistentFixture.cpp
+1 −0 examples/CMakeLists.txt
+15 −5 extras/Catch.cmake
+22 −3 extras/CatchAddTests.cmake
+348 −129 extras/catch_amalgamated.cpp
+137 −130 extras/catch_amalgamated.hpp
+1 −1 meson.build
+1 −1 src/CMakeLists.txt
+2 −2 src/catch2/benchmark/catch_benchmark.hpp
+6 −0 src/catch2/benchmark/detail/catch_benchmark_function.cpp
+3 −22 src/catch2/benchmark/detail/catch_benchmark_function.hpp
+7 −5 src/catch2/benchmark/detail/catch_estimate_clock.hpp
+1 −1 src/catch2/benchmark/detail/catch_measure.hpp
+1 −1 src/catch2/catch_all.hpp
+0 −0 src/catch2/catch_case_sensitive.hpp
+1 −0 src/catch2/catch_message.cpp
+8 −0 src/catch2/catch_test_case_info.hpp
+4 −0 src/catch2/catch_test_macros.hpp
+1 −1 src/catch2/catch_version.cpp
+1 −1 src/catch2/catch_version_macros.hpp
+2 −0 src/catch2/interfaces/catch_interfaces_test_invoker.hpp
+291 −98 src/catch2/internal/catch_output_redirect.cpp
+48 −89 src/catch2/internal/catch_output_redirect.hpp
+47 −27 src/catch2/internal/catch_run_context.cpp
+3 −1 src/catch2/internal/catch_run_context.hpp
+2 −0 src/catch2/internal/catch_test_registry.cpp
+47 −0 src/catch2/internal/catch_test_registry.hpp
+1 −1 src/catch2/internal/catch_wildcard_pattern.hpp
+2 −2 src/catch2/matchers/catch_matchers_string.hpp
+3 −0 src/catch2/matchers/internal/catch_matchers_impl.hpp
+1 −1 src/catch2/meson.build
+2 −2 src/catch2/reporters/catch_reporter_junit.cpp
+2 −2 src/catch2/reporters/catch_reporter_sonarqube.cpp
+1 −1 src/catch2/reporters/catch_reporter_sonarqube.hpp
+30 −16 tests/ExtraTests/X02-DisabledMacros.cpp
+2 −0 tests/SelfTest/Baselines/automake.sw.approved.txt
+2 −0 tests/SelfTest/Baselines/automake.sw.multi.approved.txt
+6 −2 tests/SelfTest/Baselines/compact.sw.approved.txt
+6 −2 tests/SelfTest/Baselines/compact.sw.multi.approved.txt
+14 −2 tests/SelfTest/Baselines/console.std.approved.txt
+50 −2 tests/SelfTest/Baselines/console.sw.approved.txt
+50 −2 tests/SelfTest/Baselines/console.sw.multi.approved.txt
+175 −1 tests/SelfTest/Baselines/junit.sw.approved.txt
+175 −1 tests/SelfTest/Baselines/junit.sw.multi.approved.txt
+166 −0 tests/SelfTest/Baselines/sonarqube.sw.approved.txt
+166 −0 tests/SelfTest/Baselines/sonarqube.sw.multi.approved.txt
+9 −1 tests/SelfTest/Baselines/tap.sw.approved.txt
+9 −1 tests/SelfTest/Baselines/tap.sw.multi.approved.txt
+5 −0 tests/SelfTest/Baselines/teamcity.sw.approved.txt
+5 −0 tests/SelfTest/Baselines/teamcity.sw.multi.approved.txt
+52 −2 tests/SelfTest/Baselines/xml.sw.approved.txt
+52 −2 tests/SelfTest/Baselines/xml.sw.multi.approved.txt
+26 −0 tests/SelfTest/UsageTests/Class.tests.cpp
2 changes: 1 addition & 1 deletion externals/cubeb
2 changes: 1 addition & 1 deletion externals/libyuv
Submodule libyuv updated 55 files
+21 −23 BUILD.gn
+71 −46 CMakeLists.txt
+1 −1 README.chromium
+108 −0 docs/feature_detection.md
+4 −4 docs/getting_started.md
+29 −0 include/libyuv/convert.h
+2 −3 include/libyuv/cpu_id.h
+17 −19 include/libyuv/macros_msa.h
+4 −0 include/libyuv/planar_functions.h
+25 −0 include/libyuv/rotate_row.h
+287 −3 include/libyuv/row.h
+6 −2 include/libyuv/scale_row.h
+1 −1 include/libyuv/version.h
+8 −4 libyuv.gni
+1 −0 riscv_script/riscv-clang.cmake
+22 −21 source/compare_gcc.cc
+2 −2 source/compare_neon.cc
+4 −4 source/compare_neon64.cc
+229 −2 source/convert.cc
+268 −0 source/convert_argb.cc
+28 −0 source/convert_from_argb.cc
+7 −0 source/cpu_id.cc
+18 −0 source/planar_functions.cc
+36 −1 source/rotate.cc
+15 −15 source/rotate_any.cc
+5 −5 source/rotate_gcc.cc
+128 −367 source/rotate_neon.cc
+171 −321 source/rotate_neon64.cc
+172 −0 source/rotate_sme.cc
+83 −3 source/row_any.cc
+10 −10 source/row_common.cc
+732 −812 source/row_gcc.cc
+3 −3 source/row_lasx.cc
+3 −3 source/row_lsx.cc
+137 −155 source/row_neon.cc
+870 −354 source/row_neon64.cc
+1,244 −39 source/row_rvv.cc
+954 −52 source/row_sve.cc
+23 −0 source/scale_any.cc
+152 −153 source/scale_gcc.cc
+33 −117 source/scale_neon.cc
+164 −178 source/scale_neon64.cc
+916 −35 source/scale_rvv.cc
+14 −4 source/scale_uv.cc
+14 −12 unit_test/convert_test.cc
+184 −66 unit_test/cpu_test.cc
+1 −1 unit_test/cpu_thread_test.cc
+19 −18 unit_test/planar_test.cc
+9 −9 unit_test/rotate_argb_test.cc
+19 −20 unit_test/scale_argb_test.cc
+0 −5 unit_test/scale_plane_test.cc
+18 −1 unit_test/unit_test.cc
+6 −2 unit_test/unit_test.h
+83 −42 util/cpuid.c
+15 −28 util/psnr_main.cc
2 changes: 1 addition & 1 deletion externals/sdl2/SDL
2 changes: 1 addition & 1 deletion externals/xbyak
2 changes: 1 addition & 1 deletion src/android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ dependencies {

// Download Vulkan Validation Layers from the KhronosGroup GitHub.
val downloadVulkanValidationLayers = tasks.register<Download>("downloadVulkanValidationLayers") {
src("https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases/download/vulkan-sdk-1.3.283.0/android-binaries-1.3.283.0.zip")
src("https://github.com/KhronosGroup/Vulkan-ValidationLayers/releases/download/vulkan-sdk-1.3.290.0/android-binaries-1.3.290.0.zip")
dest(file("${buildDir}/tmp/Vulkan-ValidationLayers.zip"))
onlyIfModified(true)
}
Expand Down
Loading