-
-
Notifications
You must be signed in to change notification settings - Fork 31k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
buildrelease.bat uses same build directory for AMD64 and ARM64 #123915
Comments
Eclips4
added
3.12
bugs and security fixes
3.13
bugs and security fixes
3.14
new features, bugs and security fixes
labels
Sep 10, 2024
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Sep 10, 2024
…se different directories (pythonGH-123918) (cherry picked from commit 00ffdf2) Co-authored-by: adang1345 <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Sep 10, 2024
…se different directories (pythonGH-123918) (cherry picked from commit 00ffdf2) Co-authored-by: adang1345 <[email protected]>
Thanks! |
zooba
pushed a commit
that referenced
this issue
Sep 10, 2024
…ferent directories (GH-123918) (cherry picked from commit 00ffdf2) Co-authored-by: adang1345 <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report
Bug description:
When I build Python 3.11.10 installers using
Tools\msi\buildrelease.bat -x64 -arm64
, the AMD64 files underPCbuild\amd64\en-us
are deleted when the ARM64 build starts.This is due to a typo in the build directory for ARM64 in
Tools\msi\buildrelease.bat
, which hasset BUILD=%Py_OutDir%amd64\
. This build directory conflicts with that for AMD64 and should instead beset BUILD=%Py_OutDir%arm64\
. I'll create a PR.CPython versions tested on:
3.11
Operating systems tested on:
Windows
Linked PRs
The text was updated successfully, but these errors were encountered: