-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Switch to python generated source #91140
Conversation
Tagging subscribers to this area: @agocke, @MichalStrehovsky, @jkotas Issue DetailsSwitching to
|
cc @davmason - in case you're interested in the updates to |
Co-authored-by: Elinor Fung <[email protected]>
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.
Yay!
Possible to run a mono build with changed scripts and validate that the generated providers and headers are still the same after this change? I believe we should do similar with CoreCLR as well. |
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
Mono will have some changes in the generated header files, CoreCLR seems to have generated (prior to this change) mono profiler events and filed #91687 to track that. |
Switching to
genEventing
andgenEventPipe
python scripts to generate provider source files from the universal event list filtered by a file,gen-eventing-event-inc.lst
. This list file will make it easy to add new native AOT supported events and the scripts will build the right set of provider source files. The Etw provider source generation script,genEtwProvider
, will be checked in later.