cpython3: enable building of more modules#14954
Draft
AdamKorcz wants to merge 1 commit intogoogle:masterfrom
Draft
cpython3: enable building of more modules#14954AdamKorcz wants to merge 1 commit intogoogle:masterfrom
AdamKorcz wants to merge 1 commit intogoogle:masterfrom
Conversation
Signed-off-by: Adam Korczynski <adam@adalogics.com>
Contributor
|
Does oss-fuzz require the entire project to be built as one static binary? I'm a little hesitant to complicate the build process away too much from standard Could I see a draft PR of the follow-up fuzzers you have? Maybe they might be better suited to live in https://github.com/python/library-fuzzers instead of the ones in the core interpreter which are mostly meant to exercise the C-api. |
Collaborator
Author
|
I have created a PR with my current Module fuzzers here: python/library-fuzzers#8. This PR with the changes to cpython3's build is not fully up to date so I am converting to draft. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
I am preparing a set of fuzzers for cpython's modules. Currently, the
build.shfile does not build and link many of the cpython modules. This PR adds more modules to the cpython OSS-Fuzz build in preparation of fuzzing them.@ammaraskar @alex @gpshead for info