Re: Framework and Prebinding
Re: Framework and Prebinding
- Subject: Re: Framework and Prebinding
- From: Evan Schoenberg <email@hidden>
- Date: Fri, 29 Oct 2004 03:24:47 -0500
As long as this warning exists, users will have decreased speed in loading your app because prebinding is disabled. Add the -
seg1addr flag to your "Other Linker Flags" on the framework target's build settings, like so:
-seg1addr 0x10000000
which is the default setting. Increase that value to avoid the amount of memory used by __TEXT... so for one of my private frameworks, I have:
-seg1addr 0x10600000
Hope that helps,
Evan
On Oct 29, 2004, at 12:26 AM, Mike O'Connor wrote:
My application uses a private framework I've written and built in a separate project. I put a copy of the framework into my application and all works well in the development build style. The app also seems to work fine when created in the deployment build style but I get a number of warnings in the link phase like:
Warning prebinding disabled because _PAGEZERO segment of app overlaps with __TEXT segment of framework
(similar with _DATA, _OBJC, and some other segments)
The program does work. Is this not a problem or should I change something in my build of the framework or application to correct this?
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden