diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/cpuid/fix-LNK2019.patch | |
Diffstat (limited to 'vcpkg/ports/cpuid/fix-LNK2019.patch')
| -rw-r--r-- | vcpkg/ports/cpuid/fix-LNK2019.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vcpkg/ports/cpuid/fix-LNK2019.patch b/vcpkg/ports/cpuid/fix-LNK2019.patch new file mode 100644 index 0000000..0c8bdde --- /dev/null +++ b/vcpkg/ports/cpuid/fix-LNK2019.patch @@ -0,0 +1,13 @@ +diff --git a/libcpuid/CMakeLists.txt b/libcpuid/CMakeLists.txt
+index 09189ef..fa3f6ff 100644
+--- a/libcpuid/CMakeLists.txt
++++ b/libcpuid/CMakeLists.txt
+@@ -21,7 +21,7 @@ if(UNIX)
+ add_compile_definitions(_GNU_SOURCE)
+ endif(UNIX)
+
+-if("${MSVC_CXX_ARCHITECTURE_ID}" MATCHES "x64")
++if(MSVC AND CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|x64")
+ list(APPEND cpuid_sources masm-x64.asm)
+ endif()
+
|