Skip to content
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

Remove explicitly typed package products #48

Merged
merged 1 commit into from
Aug 19, 2022
Merged

Remove explicitly typed package products #48

merged 1 commit into from
Aug 19, 2022

Conversation

simba909
Copy link
Contributor

Requirements

  • I have added test coverage for new or changed functionality
    • No tests to add AFAICT
  • I have followed the repository's pull request submission guidelines
  • I have validated my changes against all supported platform versions
    • Not sure what I can do to test all supported platform versions, hoping that CI/project members can help out here

Related issues

Didn't create an issue up-front as it seemed like more work than just contributing a PR :)

Describe the solution you've provided

As of Xcode 14 beta 5 (have not tested earlier betas, it works on 13.4.1), adding the LaunchDarkly SDK to a project breaks SwiftUI previews. The error you get is fairly non-descriptive but strongly hints to an issue finding an executable (?) for the LDSwiftEventSourceStatic product:

SettingsError: noExecutablePath(<IDESwiftPackageStaticLibraryProductBuildable:ObjectIdentifier(0x0000600046ac78d0):'LDSwiftEventSourceStatic'>)

Looking at the Package.swift file for LaunchDarkly I noticed that it's referencing the explicitly static typed target for the event source package. Changing this to a target without explicit package type solves the issue. This is trivially reproducible using Xcode 14b5:

  • Create a new app project using SwiftUI
  • Add LaunchDarkly via SPM
  • Try to run SwiftUI Previews

I'm not sure why this package declares both types explicitly, as this isn't the recommended approach when a package supports both static and dynamic linking as noted by SPM documentation (note the type parameter docs). I'm sure there's a reason though, so in order to limit breaking changes this PR renames the current LDSwiftEventSource product to LDSwiftEventSourceDynamic and introduces a new LDSwiftEventSource without an explicit product type. Doing this and changing the LaunchDarkly package to reference this new target instead of the static one, the project created above renders previews successfully. The downside is that any library consumers relying on the fact that LDSwiftEventSource is of dynamic type now might see build/linkage failures.

Describe alternatives you've considered

None, as I'm not sure what other solutions might exist.

Additional context

None.

@simba909 simba909 changed the title Set up implicitly linked target Set up implicitly typed target Aug 15, 2022
@keelerm84
Copy link
Member

Thank you for this contribution, and my apologies for the delay in responding.

I'm not sure why this package declares both types explicitly

It seems this change is actually tied back to an issue reported upstream on the SDK. You can see reports here and here.

However, I am not sure this is an issue any longer. I did some preliminary testing and removing the explicit target types doesn't seem to generate a binary with the same @rpath output from otool that was reported in the original issue.

in order to limit breaking changes

I actually just merged a long pending PR that is going to require a version bump anyway. So I think we might as well remove the additional dynamic product you added and just leave it as the docs suggest it should be.

What do you think?

@simba909
Copy link
Contributor Author

Hey @keelerm84, thank you for the feedback! Also, thank you for looking into whether both targets are still needed, much appreciated. Agree that the explicitly dynamic target can be removed. Should I keep the static one for now or remove that as well?

@keelerm84
Copy link
Member

Should I keep the static one for now or remove that as well?

I would think you could remove that one as well. Theoretically the package manager should be able to figure out what type of linking it should do if we leave it blank. 🤷

I know this will require a change to the SDK as well, but I believe it should be fine as that upstream change shouldn't in itself be version breaking.

@simba909 simba909 changed the title Set up implicitly typed target Remove explicitly typed package products Aug 19, 2022
@simba909
Copy link
Contributor Author

@keelerm84 Removed both explicitly typed products now and changed the commit message / PR title to match 🙂

@keelerm84 keelerm84 merged commit f5182c3 into launchdarkly:main Aug 19, 2022
@keelerm84
Copy link
Member

Thank you for making those updates!

I have some internal blockers I have to work through before I can release this, and then subsequently the SDK. If I can't get to this by the EOD, it might be delayed another week as I have some PTO. But when I get back, if I will make sure to get this released and the SDK updated as well.

@keelerm84 keelerm84 mentioned this pull request Aug 29, 2022
@keelerm84
Copy link
Member

@simba909 sorry for the delay. I have released the update iOS SDK (6.2.0). Thanks again for your contribution!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants