Skip to content

Commit 00ffdf2

Browse files
authored
pythongh-123915: Ensure that Windows AMD64 and ARM64 release builds use different directories (pythonGH-123918)
1 parent a2d0818 commit 00ffdf2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
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

+1-1
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)