iOS library not found for -lfsdk - ios

I'm trying to get an older ~2014 era app running on my M1 Mac. I'm able to update cocoa pods and all that, but I keep getting the following error (with or without rosetta)
ld: library not found for -lfsdk
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I can't find any documentation about this one. Any clue what -lfsdk is?
Thank you!

Related

objective-c linker error with OAuth2 library

I'm getting this error when I try to build my project in Xcode:
ld: library not found for -lGTMOAuth2 clang:
error: linker command
failed with exit code 1 (use -v to see invocation)
And we're using pods, so I opened the workspace, not the project.
I just got Xcode version 8.3.3, so not sure if this is causing any errors...
Turns out OAuth2 was not included in the Pod File, and I didn't check because I thought it was there before I pulled the latest version of the app. Thanks John Tracid.

cocoapods - linker command failed with exit code 1

I am getting the following error:
ld: library not found for -lAFNetworking
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I uninstalled AFNetworking and did not get the error. I reinstalled and do get the error.
I am using AFNetworking 2.5.
I used cocoapods to install/uninstall.
Any ideas how to resolve this issue?
After 14 hours of debugging and the help of 8 different developers we found the problem! I hope this answer helps someone in the future. It was NOT an AFNetworking error at all. The problem was one view controller implementation file did not have the target selected in Target Memberships. AFNetworking was the first #import in that view controller and that is why it was being singled out in the error.
If you have this error and you have tried all the common solutions, go through your view controllers and check for this setting.

Match-O Linker error, build on my friend's Mac but not on mine

ld: file not found: /Users/Heitzi/Library/Developer/Xcode/DerivedData/Fitme-dwuehhwwfuzxadbiipoynkykxvdq/Build/Products/Debug-iphonesimulator/Fitme.app/Fitme
clang: error: linker command failed with exit code 1 (use -v to see invocation)
We are two coworkers and you have to know that the application can be build on his Mac but not on mine. I have this error just behind.
Try a build folder clean: Command-shift-option-K.
This will delete the DerivedData associated with your app, and is generally known to fix issues like this.

Issue while adding tesseract library.

I want to implement OCR scanning. I added tesseract library from flowing link.
http://lois.di-qual.net/blog/install-and-use-tesseract-on-ios-with-tesseract-ios/#
But after adding the file mentioned and changing the settings, I am getting linker error.
I am working on latest Xcode version.
Error message : clang: error: linker command failed with exit code 1 (use -v to see invocation)
Only keep tesseract-ios/classes/Tesseract.h and tesseract-ios/classes/Tesseract.mm and remove all other files in tesseract-ios folder in your project bundle. Then build again. Hope it will successful. If it doesn't work please let me know.

clang: error: linker command failed with exit code 1 (use -v to see invocation) when setting up cocoapods environment

I am setting the cocoapods dependency management tool for iOS project, when building my project i got this error:
ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I am using Xcode 4.5 and Mac OS X Lion 10.7.4. Thanx in advance.
Can't comment yet, so posting as an answer.
It would help to have a bit more information on what you did to setup cocoapods, library settings in XCode and whether this is your first time using cocoapods or if the issue suddenly started. Try to give us a good idea of the details of your current situation.
For the time being, a little googling popped up this URL: https://github.com/CocoaPods/CocoaPods/issues/155
You might find it helpful, specifically the post near the bottom:
In my environment the issue was that the Pods project did not have a
target called ADHOC (as per the main project). I duplicated the Pods
release target, called it ADHOC, changed the OS Deployment Target to
my requirement (5.0) and then everything worked.

Resources