Keith Smiley
Keith Smiley
Ah got it, adding `-all_load` to the `linkopts` of the dylib target will probably work then
Is there no equivalent flag for gold?
ios_framework isn't meant for packaging so it doesn't need to link all dependents. ios_static_framework does do a whole archive link.
The flag probably differs, you probably want `--whole-archive`
Are you asking if there's an easy way to convert from a bazel based build back to an Xcode based build? If so I don't know of any tools to...
Interesting! I don't know of any bazel rule that supports this, and I haven't heard of anyone doing it. I imagine you could spin up a quick genrule that calls...
Yea I think a rule to package those would be fine in rules_apple. Realistically if you want to product that package format it's likely you're using rules_apple already
@DavidGoldman what's the historical reason the Xcode version has always been locked?
How does this interplay with bazel's native strip logic?
Does your Info.plist contain the relevant keys? I created a fresh project with Xcode and it looks like there are a few that I assume are required: ```xml UIApplicationSupportsMultipleScenes UISceneConfigurations...