-
Notifications
You must be signed in to change notification settings - Fork 21
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
Symbols not found issue on M1 mac with objective-c pod #66
Comments
Actually tried it out with zxcvbn-ios, which is also objective-c, and that worked. Based on that, I tried removing |
A bit late to the game, but I tried out your repo, which showed a linking problem, because you were missing to add the So simply add the followoing lines to your sdk_frameworks = ["Accelerate"] |
ah interesting @lumpidu, thank you for the info! how did you figure out that |
I googled the unreferenced symbols it spat out. And there came up some threads where Accelerate was mentioned. That did the trick. |
Hi! I'm trying to test out cocoapods-bazel to integrate pods into a project. It seems to work fine for swift pods, but it spits out
ld: symbol(s) not found for architecture arm64
when I try to install SDWebImage. I tried to use another Pod that is pure swift and it seemed to work fine there. I couldn't find a pod with mixed sources to test, so not sure how it would work there.Here is a project for repro: https://github.com/tejassharma96/basic-bazel-app
Repro steps (on m1, not sure if this issue exists on intel macs):
bundle install
bundle exec pod install
bazelisk build //:ios-app
Would appreciate any help here and info on what I might be doing wrong here. Thanks!
The text was updated successfully, but these errors were encountered: