-
Notifications
You must be signed in to change notification settings - Fork 56
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
[macOS] framework gets added twice #978
Comments
My guess would be that on macos
Since these are different architectures, that would mean that they are not linked with the executable either. And |
Thanks for the report @knopp!
Indeed, we do dynamic loading, not dynamic linking. The mapping from I'm a bit surprised we end up with two frameworks for different archs. We should have all archs in a single framework: (P.S. this is an issue with the implementation in flutter_tools, transferring to flutter repo. Edit: apparently I can't do that.) |
@dcharkes, there are two things causing the issue:
|
Thanks for looking into this @knopp!
Seems like I broke this recently: #964 Apparently no tests failed in either there, nor in flutter_tools. 🙈
Hm, we'd need to do the group before the renaming. Should be a relatively easy refactor for the iOS/MacOS code. (I think that currently nothing is broken, we should Feel free to submit a PR to fix it. |
@dcharkes, I have possible solution here: https://github.com/flutter/flutter/pull/144688/files. It doesn't require |
Yeah, feel free to submit a PR on both repos. I think grouping on |
I think this has been fixed by flutter/flutter#144688. |
Reproducible with
package ffi
.This will contain
cc @dcharkes
The text was updated successfully, but these errors were encountered: