Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog16
-rw-r--r--config/mt-mips-elfoabi7
-rw-r--r--config/mt-mips-gnu2
-rw-r--r--config/mt-mips16-compat5
-rw-r--r--config/mt-spu6
-rw-r--r--config/tcl.m424
6 files changed, 18 insertions, 42 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index 1062d8ee5..a35fe1467 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,19 +1,3 @@
-2008-08-09 Richard Sandiford <rdsandiford@googlemail.com>
-
- * mt-mips16-compat: New file, taken from mt-mips-elfoabi.
- * mt-mips-elfoabi: Include mt-mips16-compat.
- * mt-mips-gnu: New file.
-
-2008-08-03 Alan Modra <amodra@bigpond.net.au>
-
- * mt-spu (all-ld): Update for ld Makefile changes.
-
-2008-08-02 Keith Seitz <keiths@redhat.com>
-
- * tcl.m4 (SC_PATH_TCLCONFIG): Add some simple logic to deal
- with cygwin.
- (SC_PATH_TKCONFIG): Likewise.
-
2008-07-30 Paolo Bonzini <bonzini@gnu.org>
* mh-pa: New, from gcc/config/pa/x-ada.
diff --git a/config/mt-mips-elfoabi b/config/mt-mips-elfoabi
index a9f9cbec7..988ca1eaa 100644
--- a/config/mt-mips-elfoabi
+++ b/config/mt-mips-elfoabi
@@ -1 +1,6 @@
-include $(srcdir)/config/mt-mips16-compat
+# The *-elfoabi configurations are intended to be usable for both
+# MIPS16 and non-MIPS16 code, but the libraries are all non-MIPS16.
+# Add -minterlink-mips16 so that the libraries can be used with both
+# ISA modes.
+CFLAGS_FOR_TARGET += -minterlink-mips16
+CXXFLAGS_FOR_TARGET += -minterlink-mips16
diff --git a/config/mt-mips-gnu b/config/mt-mips-gnu
deleted file mode 100644
index a8198c03f..000000000
--- a/config/mt-mips-gnu
+++ /dev/null
@@ -1,2 +0,0 @@
-include $(srcdir)/config/mt-gnu
-include $(srcdir)/config/mt-mips16-compat
diff --git a/config/mt-mips16-compat b/config/mt-mips16-compat
deleted file mode 100644
index 7e36791e6..000000000
--- a/config/mt-mips16-compat
+++ /dev/null
@@ -1,5 +0,0 @@
-# Configurations use this fragment if they support MIPS16 and non-MIPS16 code,
-# but if the libraries are all non-MIPS16. Add -minterlink-mips16 so
-# that the libraries can be used with both ISA modes.
-CFLAGS_FOR_TARGET += -minterlink-mips16
-CXXFLAGS_FOR_TARGET += -minterlink-mips16
diff --git a/config/mt-spu b/config/mt-spu
index 7efa74ca4..c2dbc66e9 100644
--- a/config/mt-spu
+++ b/config/mt-spu
@@ -1,2 +1,4 @@
-# spu ld makefile invokes as-new and bin2c in maintainer mode.
-all-ld: $(MAINT) all-gas all-binutils
+# spu ld makefile invokes as-new in maintainer mode.
+all-ld: $(MAINT) all-gas
+# spu ld makefile invokes bin2c
+all-ld: all-binutils
diff --git a/config/tcl.m4 b/config/tcl.m4
index be0129b1b..51809fdc0 100644
--- a/config/tcl.m4
+++ b/config/tcl.m4
@@ -32,10 +32,6 @@ AC_DEFUN([SC_PATH_TCLCONFIG], [
AC_CACHE_VAL(ac_cv_c_tclconfig,[
# First check to see if --with-tcl was specified.
- case "${host}" in
- *-*-cygwin*) platDir="win" ;;
- *) platDir="unix" ;;
- esac
if test x"${with_tclconfig}" != x ; then
if test -f "${with_tclconfig}/tclConfig.sh" ; then
ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
@@ -59,8 +55,8 @@ AC_DEFUN([SC_PATH_TCLCONFIG], [
`ls -dr ../../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
`ls -dr ../../../tcl[[8-9]].[[0-9]] 2>/dev/null` \
`ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
- if test -f "$i/$platDir/tclConfig.sh" ; then
- ac_cv_c_tclconfig=`(cd $i/$platDir; pwd)`
+ if test -f "$i/unix/tclConfig.sh" ; then
+ ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
break
fi
done
@@ -103,8 +99,8 @@ AC_DEFUN([SC_PATH_TCLCONFIG], [
`ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
`ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` \
`ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
- if test -f "$i/$platDir/tclConfig.sh" ; then
- ac_cv_c_tclconfig=`(cd $i/$platDir; pwd)`
+ if test -f "$i/unix/tclConfig.sh" ; then
+ ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
break
fi
done
@@ -165,10 +161,6 @@ AC_DEFUN([SC_PATH_TKCONFIG], [
fi
# then check for a private Tk library
- case "${host}" in
- *-*-cygwin*) platDir="win" ;;
- *) platDir="unix" ;;
- esac
if test x"${ac_cv_c_tkconfig}" = x ; then
for i in \
../tk \
@@ -183,8 +175,8 @@ AC_DEFUN([SC_PATH_TKCONFIG], [
`ls -dr ../../../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
`ls -dr ../../../tk[[8-9]].[[0-9]] 2>/dev/null` \
`ls -dr ../../../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
- if test -f "$i/$platDir/tkConfig.sh" ; then
- ac_cv_c_tkconfig=`(cd $i/$platDir; pwd)`
+ if test -f "$i/unix/tkConfig.sh" ; then
+ ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
break
fi
done
@@ -226,8 +218,8 @@ AC_DEFUN([SC_PATH_TKCONFIG], [
`ls -dr ${srcdir}/../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
`ls -dr ${srcdir}/../tk[[8-9]].[[0-9]] 2>/dev/null` \
`ls -dr ${srcdir}/../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
- if test -f "$i/$platDir/tkConfig.sh" ; then
- ac_cv_c_tkconfig=`(cd $i/$platDir; pwd)`
+ if test -f "$i/unix/tkConfig.sh" ; then
+ ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
break
fi
done