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)
Related
I am building an application for IOS using the IONIC framework. It was working fine, that is, until I added this plugin cordova-plugin-firebase-analyticsHowever. Now, I keep getting the following error:
ld: 89 duplicate symbols for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I have read the similar questions posted here but none of solutions worked.
Any help will be appreciated. Thanks
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?
I have tried all the answers available on stackoverflow but nothing seems to be working.
I get the following error whenever i create a (TCRecord)subclass of MMRecord.
Error:
duplicate symbol _MMRecordErrorDomain in:
/Users/mavericks/Library/Developer/Xcode/DerivedData/Beered-efrmoegppszsqtbcbtfrytgkdlyy/Build/Intermediates/Beered.build/Debug-iphonesimulator/Beered.build/Objects-normal/x86_64/TCRecord.o
/Users/mavericks/Library/Developer/Xcode/DerivedData/Beered-efrmoegppszsqtbcbtfrytgkdlyy/Build/Products/Debug-iphonesimulator/libPods-MMRecord.a(MMRecord.o)
ld: 1 duplicate symbol for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Things i have already tried:
Tried removing the -ObjC in other linker flags
I have already checked the directory for any duplicate files
Under Compile sources there is no duplication of implementation files.
Third party library i am using :
MMRecord
https://github.com/mutualmobile/MMRecord
For now, in your project settings, search for "gcc_no" and set the flag to NO until we get the issue fixed. That should allow you to build your project.
Try deleting extra frameworks that have no use.
I am new to Iphone Development.
I am using alljoyn framework .project is working fine but when i added admob libraries (followed this link ), it gives me error.
ld: warning: directory not found for option '-L"/Users/Maaz/Desktop/Alljoyn_sdk/alljoyn-3.4.3-osx_ios-sdk/alljoyn_objc/samples/iOS/AllJoynChat/../../../../alljoyn_core/build/darwin/arm/iphonesimulator/Debug/dist/cpp/lib"'
ld: warning: directory not found for option '-L"/Users/Maaz/Desktop/Alljoyn_sdk/openssl-1.0.1f/build/Debug-iphonesimulator"'
ld: warning: directory not found for option '-L"/Users/Maaz/Desktop/Alljoyn_sdk/alljoyn-3.4.3-osx_ios-sdk/alljoyn_objc/samples/iOS/AllJoynChat/../../../../alljoyn_core/build/darwin/i386/iphonesimulator/Debug/dist/cpp/lib"'
ld: library not found for -lalljoyn
clang: error: linker command failed with exit code 1 (use -v to see invocation)
anybody knows then plz help I will appreciate.
thanx,
moaz
Alljoyn darwin project does not have a config to build with i386. I think they are working on this.
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).