Skip to content

Commit a377292

Browse files
Dietmar Planitzerktopley-apple
authored andcommitted
Fixed handling of AMD64 processor architecture
Signed-off-by: Kim Topley <[email protected]>
1 parent 9752e82 commit a377292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/modules/DispatchWindowsSupport.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
function(dispatch_windows_arch_spelling arch var)
33
if(${arch} STREQUAL i686)
44
set(${var} x86 PARENT_SCOPE)
5-
elseif(${arch} STREQUAL x86_64)
5+
elseif(${arch} STREQUAL x86_64 OR ${arch} STREQUAL AMD64)
66
set(${var} x64 PARENT_SCOPE)
77
elseif(${arch} STREQUAL armv7)
88
set(${var} arm PARENT_SCOPE)

0 commit comments

Comments
 (0)