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]

3.1 configure.in patch



Mark.. could you approve this?  It fixes h8300-rtems,
sparc-elf, and sparc64-elf.  It is tested for 
h8300-rtems and sparc-elf.  sparc64-elf was a visual
examination that the sparc-elf problem also applied.

I assume it also applies to the main trunk as well
but haven't confirmed that yet.

Thanks.  

2002-04-26      Joel Sherrill <joel@OARcorp.com>

        * configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
        (sparc-*-elf*, sparc64-*-elf*): Disable libgcj.


Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.119.2.11
diff -u -r1.119.2.11 configure.in
--- configure.in	22 Apr 2002 16:28:47 -0000	1.119.2.11
+++ configure.in	26 Apr 2002 13:47:59 -0000
@@ -636,6 +636,12 @@
     ;;
   *-*-rtems*)
     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
+    case ${target} in
+	h8300*-*-* | h8500-*-*)
+	  noconfigdirs="$noconfigdirs target-libf2c"
+          ;;
+        *) ;;
+    esac
     ;;
   *-*-vxworks*)
     noconfigdirs="$noconfigdirs target-newlib target-libgloss
${libgcj}"
@@ -996,11 +1002,13 @@
     if [ x${is_cross_compiler} != xno ] ; then
 	   target_configdirs="${target_configdirs} target-libstub
target-cygmon"     fi
+    noconfigdirs="$noconfigdirs ${libgcj}"
     ;;
   sparc64-*-elf*)
     if [ x${is_cross_compiler} != xno ] ; then
 	   target_configdirs="${target_configdirs} target-libstub
target-cygmon"     fi
+    noconfigdirs="$noconfigdirs ${libgcj}"
     ;;
   sparclite-*-*)
     if [ x${is_cross_compiler} != xno ] ; then


-- 
Joel Sherrill, Ph.D.             Director of Research & Development
joel@OARcorp.com                 On-Line Applications Research
Ask me about RTEMS: a free RTOS  Huntsville AL 35805
   Support Available             (256) 722-9985


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