-
-
Notifications
You must be signed in to change notification settings - Fork 34.5k
GH-107956: install a static build description file #108483
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5031753
GH-107956: install a static description file
FFY00 4da5996
escape strings correctly
FFY00 4047d86
compare the data loaded by tomllib to what we wrote in the sanity check
FFY00 b71fab2
change the format to JSON
FFY00 de5729e
add tests
FFY00 4155f2c
add news
FFY00 4adb942
fix test_python_stdlib
FFY00 d1eaf10
fix the install-details.json installation
FFY00 5b3fe21
get the interpreter path from the build system
FFY00 7e7c59a
fix WASM tests
FFY00 f792b64
add missing dependency to the desciprion file install target
FFY00 b8d6aed
fix descfileinstall target dependency
FFY00 15f8a1a
skip install-details.json test on wasi and emscripten when not available
FFY00 c96e447
Apply suggestions from code review
FFY00 217682b
rename file to build-details.json
FFY00 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
get the interpreter path from the build system
Signed-off-by: Filipe Laíns <lains@riseup.net>
- Loading branch information
commit 5b3fe211c602268b64ec6f6fc7a550729bf9bbdc
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This assumes that we're running in the target interpreter, yeah? So we need another way to generate this file for when we're cross-compiling (which is a normal part of the Windows build process).
Is there an easy way to have the script pick up all the makefile variables during a build without having to actually parse the makefile?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, but we can add a CLI option to specify the value, like we do for
executable. This way you just give the script the value when you call it in the Makefile, or other build system.I'd like to make this script as standalone as possible.