This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Pass --with-dwarf2 on darwin8


  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.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]