This is the mail archive of the crossgcc@sources.redhat.com mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


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] so glibc snapshot can handle binutils snapshot


  this is clearly a hacky patch and, just as clearly, this is
something that has to be fixed upstream since it's a flaw in the glibc
snapshot itself.  to support the following combination:

  gcc-4.1-20050201
  glibc-20050502
  binutils-050502

just trash the binutils version checking in glibc/configure.in (i told
you it was hacky).


--- glibc-20050502/configure.in.orig	2005-05-03 08:49:03.000000000 -0400
+++ glibc-20050502/configure.in	2005-05-03 08:54:32.000000000 -0400
@@ -740,12 +740,12 @@
 AC_SUBST(MIG)dnl Needed by sysdeps/mach/configure.in

 # Accept binutils 2.13 or newer.
-AC_CHECK_PROG_VER(AS, $AS, --version,
-		  [GNU assembler.* \([0-9]*\.[0-9.]*\)],
-		  [2.1[3-9]*], AS=: critic_missing="$critic_missing as")
-AC_CHECK_PROG_VER(LD, $LD, --version,
-		  [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
-		  [2.1[3-9]*], LD=: critic_missing="$critic_missing ld")
+# AC_CHECK_PROG_VER(AS, $AS, --version,
+		  # [GNU assembler.* \([0-9]*\.[0-9.]*\)],
+		  # [2.1[3-9]*], AS=: critic_missing="$critic_missing as")
+# AC_CHECK_PROG_VER(LD, $LD, --version,
+		  # [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
+		  # [2.1[3-9]*], LD=: critic_missing="$critic_missing ld")

 # We need the physical current working directory.  We cannot use the
 # "pwd -P" shell builtin since that's not portable.  Instead we try to

------
Want more information?  See the CrossGCC FAQ, http://www.objsw.com/CrossGCC/
Want to unsubscribe? Send a note to crossgcc-unsubscribe@sources.redhat.com


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