I have just received a rather large iOS Xcode Objective-C project from a friend and am currently trying to build and run the solution that was given to me on my own machine. When I go to run the code, I am given this error:
ld: warning: directory not found for option '-L/Users/huxdr/Library/Developer/Xcode/DerivedData/Presence-fwasplradhrerkdlyqnnnacvggws/Build/Products/Debug-iphonesimulator/Google-Maps-iOS-Utils'
ld: library not found for -lGoogle-Maps-iOS-Utils
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Does anyone know what I should be adding/including in order for the project to successfully link this library?
Related
I am doing a Release scheme react-native build in Xcode and I get the following error:
ld: warning: directory not found for option '-L/Users/username/Library/Developer/Xcode/DerivedData/ProjectName-qwfopvasfnhysedskapbaefsdwer/Build/Products/Release-iphonesimulator/React' ld: library not found for -lReact clang: error: linker command failed with exit code 1 (use -v to see invocation)
I tried to add libReact.a in Link Binary With Libraries section in Build Phases but I can't find the library in my workspace.
Thanks in advance
I am working on a mobile app using Unity3D and Mixpanel. The app runs successfully on an iPhone6, after I import the Mixpanel library it fails in Xcode with the following message:
ld: warning: directory not found for option '-L#(inherited)'
ld: library not found for -lMixpanel
clang: error: linker command failed with exit code 1 (use -v to see
invocation)
How can I fix this?
Hi I have updated core plot library for graphs in my project(updated header files and make pod file for libcoreplot-cocoatouch.a library)but it continuously giving me error like "directory not found for option '-FFramework'" as below and I am using xcode 7 - ios 9 and I have tried almost all the solution found on stackoverflow and other sites but nothing is working can anyone help me out with this please.
error : ld: warning: directory not found for option '-FFramework'
ld: symbol(s) not found for architecture i386 clang: error: linker
command failed with exit code 1 (use -v to see invocation)
I'm using xcode 5 for my mobile app project. I got this error when I try build the project.
ld: warning: directory not found for option '-L\\\\\\\"/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/WorklightSDK\\\\\\\"'
ld: warning: directory not found for option '-L/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/WikitudeSDK'
ld: warning: directory not found for option '-F"/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/Frameworks"'
ld: warning: directory not found for option '-F/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/WikitudeSDK'
ld: framework not found sqlcipher
clang: error: linker command failed with exit code 1 (use -v to see invocation)
ld: warning: directory not found for option '-L\\\\\\\"/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/WorklightSDK\\\\\\\"'
ld: warning: directory not found for option '-L/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/WikitudeSDK'
ld: warning: directory not found for option '-F"/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/Frameworks"'
ld: warning: directory not found for option '-F/Applications/MAMP/htdocs/rmbp/apps/rmbp/iphone/native/WikitudeSDK'
ld: framework not found sqlcipher
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Why?
This error is because of some missing libraries in your project.
Check in your Build Phases -> Link Binary With Libraries. Any of your framework may had been removed from there.
Add it and Clean and Build your project. It should work fine.
Hope it helps you.
There is another probability that you are using Cocoa Pods to install the library but not open the workspace (*.xcworkspace) file of the project after pod install was successfully executed.
I encounter the following errors
ld: warning: directory not found for option '- L/Users/andrecowardjr/Desktop/Parley/Parley/Google Analytics
ld: library not found for -lGoogleAnalytics
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Cant find out what the error is. Help needed.
Go into your project settings, check out the field 'Library Search Paths', and edit it so that it reflects where you moved your code/libraries. The error you're running into here is the linker can't find the Google Analytics library that your app is set up to link against (because you moved it).