You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Xcode 15, Apple introduced the mergeable library feature to achieve app launch times similar to static linking in release builds, without sacrificing the benefits of dynamic linking in debug builds.
In Rust, since we can create an XCFramework from either a static library (.a) or a dynamic library (.dylib), we could potentially create a pre-built mergeable library for Apple platforms.
Further investigation is needed. A tracking issue on this proposal.
The text was updated successfully, but these errors were encountered:
In Xcode 15, Apple introduced the mergeable library feature to achieve app launch times similar to static linking in release builds, without sacrificing the benefits of dynamic linking in debug builds.
According to the Apple documentation: Create a pre-built mergeable library.
In Rust, since we can create an XCFramework from either a static library (
.a
) or a dynamic library (.dylib
), we could potentially create a pre-built mergeable library for Apple platforms.Further investigation is needed. A tracking issue on this proposal.
The text was updated successfully, but these errors were encountered: