From f5566f941ffcea8bdad39666732d14f6848573ea Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Thu, 30 Oct 2025 16:16:20 +0100 Subject: [PATCH] Exclude 32 bit build from clang-cl Windows build (Appveyor) The link step fails with > LINK : fatal error LNK1171: unable to load mspdbcore.dll (error code: 126) This seems to be a known issue on the "Visual Studio 2017" image. --- .appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 6382b5f..69fc3f5 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -101,6 +101,8 @@ environment: APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 B2_CXXSTD: 11,14,17 B2_TOOLSET: clang-win + # clang-win 32 bit fails to link with "unable to load mspdbcore.dll (error code: 126)" + B2_ADDRESS_MODEL: 64 BOOTSTRAP_TOOLSET: vc141 - FLAVOR: clang-cl 18.1