framework not found issue when linking a framework within a framework

2011-09-13T05:53:26

I have a framework(FRAME1) that includes versions a b and c this is then included as a dependency within another framework(FRAME2).

However when I build FRAME2 it dies out with: ld:framework not found <nameofframework>

I have made the install location of the frame1 to /Library/Frameworks and I have also set it as @rpath

however frame2 still errors out. I have hard coded the framework search paths and that also doesnt change the situation.

here is the xcode error output:

Ld build/Release/TSVideoAppKit.framework/Versions/B/TSVideoAppKit normal i386
cd /Users/benb/Projects/Telestream/swRelease/Pipeline/2.6/Dib/Code/Macintosh/Frameworks/TSVideoAppKit
setenv MACOSX_DEPLOYMENT_TARGET 10.5
/Xcode3/usr/bin/g++-4.0 -arch i386 -dynamiclib -isysroot /Xcode3/SDKs/MacOSX10.6.sdk -L/Users/benb/Projects/Telestream/swRelease/Pipeline/2.6/Dib/Code/Macintosh/Frameworks/TSVideoAppKit/build/Release -F/Users/benb/Projects/Telestream/swRelease/Pipeline/2.6/Dib/Code/Macintosh/Frameworks/TSVideoAppKit/build/Release -filelist /Users/benb/Projects/Telestream/swRelease/Pipeline/2.6/Dib/Code/Macintosh/Frameworks/TSVideoAppKit/build/TSVideoAppKit.build/Release/TSVideoAppKitFramework.build/Objects-normal/i386/TSVideoAppKit.LinkFileList -install_name /Library/Frameworks/TSVideoAppKit.framework/Versions/B/TSVideoAppKit -Xlinker -rpath -Xlinker /Library/Frameworks -mmacosx-version-min=10.5 -framework TSPipelineEngine -framework Cocoa -framework CoreVideo -framework OpenGL -framework QTKit -framework QuickTime -framework CoreAudio -single_module -compatibility_version 1 -current_version 1 -o /Users/benb/Projects/Telestream/swRelease/Pipeline/2.6/Dib/Code/Macintosh/Frameworks/TSVideoAppKit/build/Release/TSVideoAppKit.framework/Versions/B/TSVideoAppKit

ld: framework not found TSPipelineEngine
collect2: ld returned 1 exit status
Command /Xcode3/usr/bin/g++-4.0 failed with exit code 1

Thanks for any help :)

Copyright License:
Author:「theprojectabot」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/7394503/framework-not-found-issue-when-linking-a-framework-within-a-framework

About “framework not found issue when linking a framework within a framework” questions

I have a framework(FRAME1) that includes versions a b and c this is then included as a dependency within another framework(FRAME2). However when I build FRAME2 it dies out with: ld:framework not...
I have forked a framework called BTNavigationDropdownMenu (swift project for ios). all worked fine till I tried to add a dependency to the latest version in the branch I created. the problem is the...
I am trying to create a private umbrella framework and I am getting some linking issues while linking the umbrella framework with my application. SUB is the sub framework and Wrapper is my umbrella
I'm running into a framework linking issue that I couldn't solve for several days now. Here's what I'm doing: In Xcode 5.0.2, I create a new Framework project. I delete the default targets being
When linking a particular iOS app project to a static framework, Xcode is reporting duplicate symbol errors from within the single static framework file (although the duplicates are reported source...
I have an app, and suddenly i got following errors. I have those frameworks imported by carthage directly in project. In my ViewController class i just paste: import Alamofire print(
i got some problem when i trying to include framework within framework. i try to make subframework in swift language. when i run in simulator work perfectly but in device i have error “Reason: no
I'm attempting to link a program against ogre and a few other libraries on OS X using cmake, but I keep getting this error: ld: warning: directory '/Library/Frameworks/SDL.framework/Debug' follow...
Hello again to the Stack Overflow community! I would very much appreciate your help on this matter. Recently I compiled and installed the iOS toolchain on CentOS 6.2 i386 running inside VirtualBox...
tl;dr Linking your embedded framework with other framework and don't link other framework with your app cause required code signature missing when Build &amp; Run on device. description: Setup: ...

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.