Skip to content

Commit 872a13b

Browse files
committed
Stop building IA32 and ARM by default for Windows.
These no longer link with Visual Studio 2022 due to missing default libraries.
1 parent 09315e7 commit 872a13b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

SConstruct

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -394,15 +394,9 @@ def Main():
394394
BuildVM(host_cxx, 'arm64', host_os, True, sanitize)
395395
BuildVM(host_cxx, 'arm64', host_os, False, sanitize)
396396
elif target_os == 'windows':
397-
if host_arch != 'ia32':
398-
BuildVM(host_cxx, 'ia32', host_os, True, sanitize)
399-
BuildVM(host_cxx, 'ia32', host_os, False, sanitize)
400397
if host_arch != 'x64':
401398
BuildVM(host_cxx, 'x64', host_os, True, sanitize)
402399
BuildVM(host_cxx, 'x64', host_os, False, sanitize)
403-
if host_arch != 'arm':
404-
BuildVM(host_cxx, 'arm', host_os, True, sanitize)
405-
BuildVM(host_cxx, 'arm', host_os, False, sanitize)
406400
if host_arch != 'arm64':
407401
BuildVM(host_cxx, 'arm64', host_os, True, sanitize)
408402
BuildVM(host_cxx, 'arm64', host_os, False, sanitize)

0 commit comments

Comments
 (0)