Skip to content

Commit e19111c

Browse files
committed
AppVeyor: Stop building for ARM 64-bit with MSVC 2019
We continue to build for ARM 64-bit with MSVC 2022. The problem first appeared on 2025-11-07, after the 2025-11-06 image update (Visual Studio 2019/2022). (https://github.com/appveyor/website/blob/master/src/_updates/2025-11-05.md) The errors were: C:\Program Files (x86)\Windows Kits\10\Include\10.0.26100.0\um\winnt.h (6343,27): warning C4013: '_CountOneBits64' undefined; assuming extern returning int When it was OK: cmake version 4.1.0 -- The C compiler identification is MSVC 19.29.30159.0 With errors: cmake version 4.1.0 -- Selecting Windows SDK version 10.0.26100.0 to target Windows 10.0.17763. -- The C compiler identification is MSVC 19.29.30159.0 Moreover: Remove duplicate options in cmake command.
1 parent 2ec8cb0 commit e19111c

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.appveyor.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -89,18 +89,6 @@ environment:
8989
PLATFORM: x64
9090
SDK: npcap-sdk
9191
OPENSSL_ROOT_DIR: -DOPENSSL_ROOT_DIR=C:\OpenSSL-v33-Win64\bin
92-
# VS 2019, Npcap, 64-bit ARM, without remote
93-
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
94-
GENERATOR: "Visual Studio 16 2019"
95-
PLATFORM: ARM64
96-
SDK: npcap-sdk
97-
REMOTE: -DENABLE_REMOTE=NO
98-
# VS 2019, Npcap, 64-bit ARM, with remote
99-
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
100-
GENERATOR: "Visual Studio 16 2019"
101-
PLATFORM: ARM64
102-
SDK: npcap-sdk
103-
OPENSSL_ROOT_DIR: -DOPENSSL_ROOT_DIR=C:\OpenSSL-v33-Win64\bin
10492
# VS 2022, WinPcap, 32-bit and 64-bit x86, without remote
10593
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
10694
GENERATOR: "Visual Studio 17 2022"
@@ -167,5 +155,5 @@ build_script:
167155
- md build
168156
- cd build
169157
- cmake --version
170-
- cmake %REMOTE% %OPENSSL_ROOT_DIR% -DPacket_ROOT=c:\projects\libpcap\Win32\%SDK% -G"%GENERATOR%" -DPacket_ROOT=c:\projects\libpcap\Win32\%SDK% -DPacket_ROOT=c:\projects\libpcap\Win32\%SDK% -G"%GENERATOR%" -G"%GENERATOR%" -A %PLATFORM% ..
158+
- cmake %REMOTE% %OPENSSL_ROOT_DIR% -DPacket_ROOT=c:\projects\libpcap\Win32\%SDK% -G"%GENERATOR%" -A %PLATFORM% ..
171159
- msbuild /m /nologo /p:Configuration=Release pcap.sln

0 commit comments

Comments
 (0)