This is the mail archive of the
newlib@sources.redhat.com
mailing list for the newlib project.
RFA: Enable configuration of iq2000 subdirectory of libgloss
- From: Nick Clifton <nickc at redhat dot com>
- To: jjohnstn at redhat dot com
- Cc: newlib at sources dot redhat dot com
- Date: Wed, 27 Oct 2004 10:27:01 +0100
- Subject: RFA: Enable configuration of iq2000 subdirectory of libgloss
Hi Jeff,
Please could I have permission to apply the patch below ? It adds
an entry to the case statement in the configure.in script for the
libgloss directory so that the iq2000 subdirectory can be configured
and built. The iq2000 subdirectory is already present in the
sources, it is just that the configure script was not enabling it!
Cheers
Nick
libgloss/ChangeLog
2004-10-27 Nick Clifton <nickc@redhat.com>
* configure.in: Add support for iq2000 target.
* configure: Regenerate.
Index: libgloss/configure.in
===================================================================
RCS file: /cvs/src/src/libgloss/configure.in,v
retrieving revision 1.9
diff -c -3 -p -r1.9 configure.in
*** libgloss/configure.in 5 Oct 2004 20:00:52 -0000 1.9
--- libgloss/configure.in 27 Oct 2004 09:17:34 -0000
*************** case "${target}" in
*** 115,120 ****
--- 115,122 ----
xscale-*-elf | xscale-*-coff)
configdirs="${configdirs} arm testsuite";
;;
+ iq2000-*-*)
+ configdirs="${configdirs} iq2000 testsuite";;
esac