| Submitter | Jack Howarth |
|---|---|
| Date | Aug. 12, 2010, 11:33 p.m. |
| Message ID | <20100812233353.GA27847@bromo.med.uc.edu> |
| Download | mbox | patch |
| Permalink | /patch/61655/ |
| State | New |
| Headers | show |
Comments
Patch
Index: configure.ac =================================================================== --- configure.ac (revision 163079) +++ configure.ac (working copy) @@ -2506,6 +2506,16 @@ esac fi +# Default to using --with-dwarf2 on certain targets +if test x${with_dwarf2} = x ; then + case "${target}" in + *-*-darwin8*) + with_dwarf2=yes; + extra_host_args="${extra_host_args} --with-dwarf2" + ;; + esac +fi + # hpux11 in 64bit mode has libraries in a weird place. Arrange to find # them automatically. case "${host}" in
Currently on darwin8 users have to explicitly invoke --with-dwarf2 since it's Xcode defaults to stabs. The attached patch passes --with-dwarf2 on darwin8 in order to assure it builds the standard dwarf2 support. Okay for gcc trunk and gcc 4.5.2? Jack 2010-08-12 Jack Howarth <howarth@bromo.med.uc.edu> * configure.ac: Pass --with-dwarf2 on darwin8. * configure: Regenerate.