-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Crossgen2 ARM64 runs & initial cross-targeting support #37331
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
8c55dec
Crossgen2 ARM64 runs
trylek b11436d
Enable framework crossgenning on ARM64
trylek 532f771
Fix cross-compilation native bin folder for arm/arm64
trylek aece6be
Revert incorrect attempt at path fix
trylek 0301635
Add jitinterface to crosscomponents.cmake; crossgen2 cross-package
trylek 384ff95
Add missing targetarch option to Crossgen2 framework compilation
trylek eb86271
Initial support for Crossgen2 multitargeting
trylek f2b0ad7
Fix one overlooked NativeLibraryPrefix
trylek 4ae0d07
Fix race condition in clrjit loading
trylek 28493a1
Fix target architecture and callin convention
trylek 45aefc2
Fix bug in targetarch specification in CLRTest.Crossgen.targets
trylek 1529908
Fix typo in 'del' command syntax
trylek eec60a9
Initialize JIT library and interface on the main thread
trylek 8cb5fc0
Block out the Dev_27924 test on CG2 ARM64 with issue #34316
trylek 216fe03
Address Anton's PR feedback
trylek 5de653b
Revert dynamic loading of jitinterface per PR feedback
trylek 0819cdc
Fix Crossgen2 file list in the installer to match the new structure
trylek 7c11117
One more fix for the new Crossgen2 package structure
trylek dbdab94
Rename OS target component from 'lnx' to 'linux' per JanK's feedback
trylek ffdfb88
Add explicit handling of jitPath to Startup; remove SetDllImportResolver
trylek 6ca1613
Remove clrjit subfolder, suffix its name with target OS / arch
trylek 34b6ecc
Addressing additional bits of JanK's PR feedback
trylek 6944462
Addressing additional JanK's feedback
trylek 8e2fe04
Fix clrjit path in Signing.props
trylek 9e2e87c
Put back SetDllImportResolver per Anton's and Michal's feedback
trylek 58239a5
Remove caching of clrjit handle per Michal's PR feedback
trylek 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
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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
Oops, something went wrong.
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.
Isn't this list Windows-only? This native binary won't have the
.dll
extension on Linux/macOS.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.
Apparently this script is Windows-only as the other names like "crossgen2.exe" indicate. I don't know if there's an equivalent list for Linux, I haven't found any.
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.
So did you add these
Condition
s for potential cross-OS compilation in future?