Skip to content

Commit 3fd3b8a

Browse files
[3.13] pythongh-123915: Ensure that Windows AMD64 and ARM64 release builds use different directories (pythonGH-123918) (python#123921)
pythongh-123915: Ensure that Windows AMD64 and ARM64 release builds use different directories (pythonGH-123918) (cherry picked from commit 00ffdf2) Co-authored-by: adang1345 <adang1345@gmail.com>
1 parent 612e469 commit 3fd3b8a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Ensure that ``Tools\msi\buildrelease.bat`` uses different directories for AMD64 and ARM64 builds.

Tools/msi/buildrelease.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ if "%1" EQU "x86" (
127127
set OUTDIR_PLAT=amd64
128128
set OBJDIR_PLAT=x64
129129
) else if "%1" EQU "ARM64" (
130-
set BUILD=%Py_OutDir%amd64\
130+
set BUILD=%Py_OutDir%arm64\
131131
set PGO=%~2
132132
set BUILD_PLAT=ARM64
133133
set OUTDIR_PLAT=arm64

0 commit comments

Comments
 (0)