Handle i686

This commit is contained in:
Savannah Ostrowski 2025-12-07 21:13:36 -08:00
parent 97ca11750f
commit ff270de470

View file

@ -46,6 +46,9 @@ def fetch_zip(commit_hash, zip_dir, *, org='python', binary=False, verbose):
def fetch_release(tag, tarball_dir, *, org='python', verbose=False):
arch = platform.machine()
# i686 (32-bit) builds can use x64 LLVM for cross-compilation
if arch == 'x86':
arch = 'AMD64'
reporthook = None
if verbose:
reporthook = print