[F-Script-talk] Re: F-Script framework
Brought to you by:
pmougin
From: Philippe M. <pm...@ac...> - 2002-01-27 20:43:57
|
Tom, Checking the little box is the right thing to do. It tells the linker to link the currently selected target in your project with the F-Script framework (it is possible to have several targets in a project, and for each one you check the little box associated with each file you want to link the target to). You can safely ignore the prebinding warnings; it just informs you that, for some obscure reasons, a particular optimization (called "prebinding") will not be used (you can learn more about this at http://developer.apple.com/techpubs/macosx/ReleaseNotes/Prebinding.html). This warning will not have any adverse effect on your application. Best, Phil PS: I just got your message today... was traveling... Tom L. Davis wrote : > I'm really new to both Cocoa and FScript. > > I added the FScript frameworks to my project and am having linking > problems. > > If I don't check the box (which I can't find documentation on) to the > left of the Fscript.framework I get an undefined: > > /usr/bin/ld: Undefined symbols: .objc_class_name_Array > > If I check the box, I get five 'prebinding disabled' warnings, the > first of which is > > /usr/bin/ld: warning prebinding disabled because (__PAGEZERO segment > (address = 0x0 size = 0x1000) of > /Users/tom/apps/CocoaDrawing/build/CocoaDrawing.app/Contents/MacOS/CocoaDrawing > overlaps with __TEXT segment (address = 0x0 size = 0x4d000) of > /Users/pmougin/Desktop/FScript.framework/Versions/A/FScript > > What am I doing wrong? > > Tom |