Skip to content

Commit

Permalink
Stop building IA32 and ARM by default for Windows.
Browse files Browse the repository at this point in the history
These no longer link with Visual Studio 2022 due to missing default libraries.
  • Loading branch information
rmacnak committed Feb 1, 2025
1 parent 09315e7 commit 872a13b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -394,15 +394,9 @@ def Main():
BuildVM(host_cxx, 'arm64', host_os, True, sanitize)
BuildVM(host_cxx, 'arm64', host_os, False, sanitize)
elif target_os == 'windows':
if host_arch != 'ia32':
BuildVM(host_cxx, 'ia32', host_os, True, sanitize)
BuildVM(host_cxx, 'ia32', host_os, False, sanitize)
if host_arch != 'x64':
BuildVM(host_cxx, 'x64', host_os, True, sanitize)
BuildVM(host_cxx, 'x64', host_os, False, sanitize)
if host_arch != 'arm':
BuildVM(host_cxx, 'arm', host_os, True, sanitize)
BuildVM(host_cxx, 'arm', host_os, False, sanitize)
if host_arch != 'arm64':
BuildVM(host_cxx, 'arm64', host_os, True, sanitize)
BuildVM(host_cxx, 'arm64', host_os, False, sanitize)
Expand Down

0 comments on commit 872a13b

Please sign in to comment.