This is the mail archive of the newlib@sources.redhat.com 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]

[libgloss mips patch RFA] fix mipsisa32el handling, addmipsisa32r2.


addresses the following issues:

* mipsisa32el-* is handled differently than mipsisa32-*.  (oversight
  from a while ago, i guess.  certainly not.)

* add mipsisa32r2 (and ...el) support.


tested with mipsisa32-elf, mipsisa32r2-elf, and mipsisa32el-elf
targets, check-gcc against simulator and inspection of which libraries
are actually generated.


thanks,

chris
--
2003-01-09  Chris Demetriou  <cgd@broadcom.com>

	* mips/configure.in (mipsisa32el-*-*): Handle in the same way
	as mipsisa32-*-*.
	(mipsisa32r2-*-*, mipsisa32r2el-*-*): New, handled in the same
	way as mipsisa32-*-*.
	* mips/configure: Regenerate.

Index: configure.in
===================================================================
RCS file: /cvs/src/src/libgloss/mips/configure.in,v
retrieving revision 1.6
diff -u -p -r1.6 configure.in
--- configure.in	12 Nov 2002 23:14:24 -0000	1.6
+++ configure.in	7 Jan 2003 02:12:16 -0000
@@ -92,7 +92,8 @@ case "${target}" in
         script_list="dve idt jmr3904app jmr3904dram jmr3904dram-java jmr3904app-java"
         bsp_list="libdve.a libidt.a libjmr3904.a"
         ;;
-  mipsisa32-*-*)
+  mipsisa32-*-* | mipsisa32el-*-* | \
+  mipsisa32r2-*-* | mipsisa32r2el-*-*)
 	crt0="crt0_cygmon.o crt0.o"
 	pcrt0="pcrt0.o"
 	part_specific_obj=


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