We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ca117 commit ff270deCopy full SHA for ff270de
1 file changed
PCbuild/get_external.py
@@ -46,6 +46,9 @@ def fetch_zip(commit_hash, zip_dir, *, org='python', binary=False, verbose):
46
47
def fetch_release(tag, tarball_dir, *, org='python', verbose=False):
48
arch = platform.machine()
49
+ # i686 (32-bit) builds can use x64 LLVM for cross-compilation
50
+ if arch == 'x86':
51
+ arch = 'AMD64'
52
reporthook = None
53
if verbose:
54
reporthook = print
0 commit comments