-
Notifications
You must be signed in to change notification settings - Fork 10.3k
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
Some ASP.NET Core shared framework assemblies are no longer crossgenned. #60174
Comments
I wonder if this is related to switching to use the Shared Framework SDK - @jkoritzinsky what's the purpose of this file? https://github.com/dotnet/aspnetcore/blob/main/src/Framework/App.Runtime/src/PartialCompositeAssemblyList.txt |
That file is for the "composite image" tarball that's used for some Alpine Linux scenarios. The goal for that tarball was to get the highest performance from R2R with the least size impact using the "composite R2R" mode. That's unrelated to the regular ASP.NET Core shared framework, which shouldn't use that list. |
@tmds is this still showing up? Going to try to investigate this week |
Yes, this is still showing up. To check if an assembly is crossgenned you can use |
Confirmed in the binlog that these assemblies do get passed to the |
Current theory is that the Since these 2 assemblies just declare interfaces & don't have any implementation code. Trying to confirm/see if that's expected. E.g. https://github.com/dotnet/aspnetcore/blob/main/src/Middleware/ResponseCaching.Abstractions/src/IResponseCachingFeature.cs is the only C# file in It makes sense that this would have changed w/ our switch to the SharedFx SDK, since we used to manually construct the list of files to pass to the crossgen tool. |
@tmds Is this change causing you issues, or did you just want to confirm whether or not this is a regression? If I can confirm my suspicion from the above comment, it sounds like this is expected/by-design |
Confirmed this is more-or-less by design. There's no code in those 2 assemblies, so crossgening them wouldn't really have any benefit. Going to close this as by-design, but feel free to open if it's causing issues for source-build. |
@wtgodbe if it is intentional, then this is all good. I had created an issue in runtime dotnet/runtime#111997 and the feedback there was that even without code crossgen2 produces R2R images, which is true. Here we learned that the without code, crossgen2 gets skipped. |
This was introduced in dotnet/sdk#3099 . It probably does not hurt, but it does not help either. The PR description describes it as a workaround for PDB generation issue. I suspect that the PDB generation issue does not exist anymore. cc @dotnet/crossgen-contrib |
As part of our test suite, we have a test that checks .NET's dlls are R2R compiled.
This is no longer the case for these shared framework assemblies:
For the composite framework they are still crossgenned. The build is producing these composite crossgenned assemblies at
artifacts/obj/Microsoft.AspNetCore.App.Runtime.Composite/Release/linux-x64/
. They are not produced for the shared framework atartifacts/obj/aspnetcore-sfx/Release/linux-x64/R2R
.cc @dougbu
The text was updated successfully, but these errors were encountered: