This is the mail archive of the newlib@sourceware.org mailing list for the newlib 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] Configure mipsisa64sb1-*-* the same as mipsisa64-*-*


Other GNU packages like binutils, gcc, and gdb, handle mipsisa64sb1-*-* as
just a minor variation on mipsisa64-*-*.  It would seem reasonable that
newlib do the same, rather than using the catch-all '*' pattern.

Note an alternative fix might be to change:

    mipsisa64-*-*)

to

    mipsisa64*-*-*)

-Fred

2006-05-20  Fred Fish  <fnf@specifix.com>

	* mips/configure.in (mipsisa64sb1-*-*): Configure the same as
	mipsisa64-*-*.
	* mips/configure: Regenerated.

Index: mips/configure
===================================================================
RCS file: /cvsroots/specifix/gnusense/newlib/libgloss/mips/configure,v
retrieving revision 1.1.1.3.8.1
diff -c -p -r1.1.1.3.8.1 configure
*** mips/configure	29 Mar 2006 21:19:14 -0000	1.1.1.3.8.1
--- mips/configure	20 May 2006 19:05:39 -0000
*************** case "${target}" in
*** 919,924 ****
--- 919,925 ----
          ;;
    mipsisa32-*-* | mipsisa32el-*-* | \
    mipsisa32r2-*-* | mipsisa32r2el-*-* | \
+   mipsisa64sb1-*-* | \
    mipsisa64-*-*)
  	crt0="crt0_cfe.o crt0_cygmon.o crt0.o"
  	pcrt0="pcrt0.o"
Index: mips/configure.in
===================================================================
RCS file: /cvsroots/specifix/gnusense/newlib/libgloss/mips/configure.in,v
retrieving revision 1.1.1.3.8.1
diff -c -p -r1.1.1.3.8.1 configure.in
*** mips/configure.in	29 Mar 2006 21:19:14 -0000	1.1.1.3.8.1
--- mips/configure.in	16 May 2006 17:55:20 -0000
*************** case "${target}" in
*** 94,99 ****
--- 94,100 ----
          ;;
    mipsisa32-*-* | mipsisa32el-*-* | \
    mipsisa32r2-*-* | mipsisa32r2el-*-* | \
+   mipsisa64sb1-*-* | \
    mipsisa64-*-*)
  	crt0="crt0_cfe.o crt0_cygmon.o crt0.o"
  	pcrt0="pcrt0.o"


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