From 4187644215fa4f4806c7a332edf91a850111a0b5 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 4 Oct 2024 17:06:15 +0200 Subject: [PATCH] Build: Fix x64 libraries used by lib_update.cmd on WoA Use the same logic as in check_libraries.cmd Pull Request: https://projects.blender.org/blender/blender/pulls/128600 --- build_files/windows/lib_update.cmd | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build_files/windows/lib_update.cmd b/build_files/windows/lib_update.cmd index 7564ceab83e..364483aa7e5 100644 --- a/build_files/windows/lib_update.cmd +++ b/build_files/windows/lib_update.cmd @@ -1,4 +1,8 @@ -set BUILD_VS_LIBDIR=lib/windows_x64 +if "%BUILD_ARCH%" == "arm64" ( + set BUILD_VS_LIBDIR=lib/windows_arm64 +) else ( + set BUILD_VS_LIBDIR=lib/windows_x64 +) :RETRY "%GIT%" -C "%BLENDER_DIR%\" config --local "submodule.%BUILD_VS_LIBDIR%.update" "checkout"