SOLVED: Built-from-CVS Phoenix isn't responsive
Chuck Musser <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.macosx |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
> I actually just changed the script today so that it will fix these. It > only seems to be a problem when not building it optimized. Making sure > that LD_PREBIND_ALLOW_OVERLAP is not set seems to do the trick. > OK, I finally built a running and debuggable Firebird. A couple things contributed to this glorious achievement: 1.) I used your mozconfig.debug, which ensured (via --enable-optimize="-g3" that debugging symbols were included. 2.) I took note of the above hint concerning LD_PREBIND_ALLOW_OVERLAP and discovered something about Fink. The version I use (Fink 0.6.2) includes a shell initialization script that sets this variable to "1". If you source this init script in your own shell initialization (and Fink's instructions tell you to do so) the variable will be set and the compile will fail. Once I unset the var, and rebuilt, things worked fine. As a side note, "mozmake" doesn't explicitly unset this variable for debug builds. You might want to do that to robustify things in environments where Fink (or something else) sneaks it into the mix. Thanks for all the help, Chuck