-
Notifications
You must be signed in to change notification settings - Fork 522
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
[msbuild] Fix issue referencing static libraries from compressed xcframeworks. #20585
[msbuild] Fix issue referencing static libraries from compressed xcframeworks. #20585
Conversation
…ameworks. The code incorrectly assumed that the contents of a compressed xcframework would always be a framework, but this is incorrect (it can be a dynamic library (.dylib), static library (.a) or a framework (.framework). Fix this by: * Change variable and parameter names to clearly indicate that the output from an xcframework is a native library. * Unify code to handle metadata for native libraries from xcframeworks, so that the code isn't duplicated (or even worse, different) between compressed and non-compressed xcframeworks. The latter point fixes a problem where we'd compute the incorrect path to the static library inside a compressed xcframework. PR dotnet#20546 contains a test case that triggers this.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
if (item.ItemSpec.EndsWith (".a", StringComparison.OrdinalIgnoreCase)) { | ||
item.SetMetadata ("Kind", "Static"); | ||
item.SetMetadata ("PublishFolderType", "StaticLibrary"); | ||
} else if (item.ItemSpec.EndsWith (".dylib", StringComparison.OrdinalIgnoreCase)) { | ||
item.SetMetadata ("Kind", "Dynamic"); | ||
item.SetMetadata ("PublishFolderType", "DynamicLibrary"); | ||
} else { | ||
item.SetMetadata ("Kind", "Framework"); | ||
item.SetMetadata ("PublishFolderType", "AppleFramework"); | ||
} |
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.
we could simplify that a little:
if (item.ItemSpec.EndsWith (".a", StringComparison.OrdinalIgnoreCase)) { | |
item.SetMetadata ("Kind", "Static"); | |
item.SetMetadata ("PublishFolderType", "StaticLibrary"); | |
} else if (item.ItemSpec.EndsWith (".dylib", StringComparison.OrdinalIgnoreCase)) { | |
item.SetMetadata ("Kind", "Dynamic"); | |
item.SetMetadata ("PublishFolderType", "DynamicLibrary"); | |
} else { | |
item.SetMetadata ("Kind", "Framework"); | |
item.SetMetadata ("PublishFolderType", "AppleFramework"); | |
} | |
// defaults | |
var kind = "Framework"; | |
var folderType = "AppleFramework"; | |
if (item.ItemSpec.EndsWith (".a", StringComparison.OrdinalIgnoreCase)) { | |
kind = "Static"; | |
folderType = "StaticLibrary); | |
} | |
if (item.ItemSpec.EndsWith (".dylib", StringComparison.OrdinalIgnoreCase)) { | |
kind = "Dynamic"; | |
folderType = "DynamicLibrary"; | |
} | |
item.SetMetadata ("Kind", kind); | |
item.SetMetadata ("PublishFolderType", folderType); | |
Not a blocker to land, just a proposal.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
🔥 [CI Build] Test results 🔥Test results❌ Tests failed on VSTS: test results 0 tests crashed, 48 tests failed, 121 tests passed. Failures❌ framework tests
Html Report (VSDrops) Download ❌ fsharp tests
Html Report (VSDrops) Download ❌ interdependent-binding-projects tests
Html Report (VSDrops) Download ❌ introspection tests
Html Report (VSDrops) Download ❌ linker tests
|
💻 [PR Build] Tests on macOS X64 - Mac Sonoma (14) passed 💻✅ All tests on macOS X64 - Mac Sonoma (14) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Monterey (12) passed 💻✅ All tests on macOS M1 - Mac Monterey (12) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Ventura (13) passed 💻✅ All tests on macOS M1 - Mac Ventura (13) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Big Sur (11) passed 💻✅ All tests on macOS M1 - Mac Big Sur (11) passed. Pipeline on Agent |
📚 [PR Build] Artifacts 📚Packages generatedView packagesPipeline on Agent |
💻 [CI Build] Windows Integration Tests passed 💻✅ All Windows Integration Tests passed. Pipeline on Agent |
✅ API diff for current PR / commitLegacy Xamarin (No breaking changes)
NET (empty diffs)
✅ API diff vs stableLegacy Xamarin (No breaking changes).NET (No breaking changes)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
🚀 [CI Build] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 170 tests passed 🎉 Tests counts✅ cecil: All 1 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
The code incorrectly assumed that the contents of a compressed xcframework would
always be a framework, but this is incorrect (it can be a dynamic library (.dylib),
static library (.a) or a framework (.framework).
Fix this by:
an xcframework is a native library.
the code isn't duplicated (or even worse, different) between compressed and non-compressed
xcframeworks.
The latter point fixes a problem where we'd compute the incorrect path to the static
library inside a compressed xcframework.
PR #20546 contains a test case that triggers this.