This is the mail archive of the gcc@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]

Re: cross target report on gcc 3.1-20020423


"David S. Miller" wrote:
> 
>    From: Joel Sherrill <joel.sherrill@OARcorp.com>
>    Date: Fri, 26 Apr 2002 06:19:22 -0500
> 
>    I am testing a fix for this locally.  Who approves check-ins on
>    configure.in?
>    I now have two patches for it.
> 
> I can approve it.  Please rebuild the configure file properly
> and make sure that is a part of your patch too.

The top level configure script (gcc-VERSION/configure) does not 
appear to be automatically generated.  Is this correct?  If yes, 
is it OK for me to commit it or do you want to?


If so, then this is my complete patch for configure.in at this point:

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

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

===================================================================
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:18:46 -0000
@@ -636,6 +636,12 @@
     ;;
   *-*-rtems*)
     noconfigdirs="$noconfigdirs target-libgloss ${libgcj}"
+    case ${target} in
+	h8300*-*-* | h8500-*-*)
+	  noconfigdirs="$noconfigdirs ${libgcj} 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]