-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Removing Entry2MethodDesc as it is unnecessary #111756
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -635,7 +635,7 @@ | |||||||||
|
||||||||||
<Target Name="GenerateLayout" | ||||||||||
DependsOnTargets="CreateTestOverlay" | ||||||||||
AfterTargets="ManagedBuild;RestorePackages" | ||||||||||
Check failure on line 638 in src/tests/build.proj Azure Pipelines / runtime (Build browser-wasm linux Release AllSubsets_Mono_RuntimeTests monointerpreter)src/tests/build.proj#L638
Check failure on line 638 in src/tests/build.proj Azure Pipelines / runtimesrc/tests/build.proj#L638
|
||||||||||
Condition="'$(__BuildTestWrappersOnly)' != '1' and '$(__CopyNativeTestBinaries)' != '1' and '$(__SkipGenerateLayout)' != '1' and !$(MonoAot) and !$(MonoFullAot)"> | ||||||||||
|
||||||||||
<MSBuild | ||||||||||
|
@@ -679,7 +679,8 @@ | |||||||||
<CrossgenCmd Condition="'$(__CompositeBuildMode)' == ''">$(CrossgenCmd) --crossgen2-parallelism 1</CrossgenCmd> | ||||||||||
|
||||||||||
<CrossgenCmd>$(CrossgenCmd) --verify-type-and-field-layout</CrossgenCmd> | ||||||||||
<CrossgenCmd>$(CrossgenCmd) --crossgen2-path "$(__BinDir)\$(BuildArchitecture)\crossgen2\crossgen2.dll"</CrossgenCmd> | ||||||||||
<CrossgenCmd Condition="'$(RunningOnUnix)' == 'true'">$(CrossgenCmd) --crossgen2-path "$(__BinDir)\$(BuildArchitecture)\crossgen2\crossgen2"</CrossgenCmd> | ||||||||||
<CrossgenCmd Condition="'$(RunningOnUnix)' != 'true'">$(CrossgenCmd) --crossgen2-path "$(__BinDir)\$(BuildArchitecture)\crossgen2\crossgen2.exe"</CrossgenCmd> | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is another instance of this problem at runtime/eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml Lines 72 to 75 in f41b65f
|
||||||||||
</PropertyGroup> | ||||||||||
|
||||||||||
<Message Importance="High" Text="$(MsgPrefix)Compiling framework using Crossgen2: $(CrossgenCmd)" /> | ||||||||||
|
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.
Can't the same path work on Windows? Removing the
.exe
.