aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Lipe <robertl@dgii.com>1998-09-30 20:25:11 +0000
committerRobert Lipe <robertl@dgii.com>1998-09-30 20:25:11 +0000
commite9a808b067d2d33f4152f32ad57eb3017067463b (patch)
treefff7643ee054e3159a8bbd16a866ad28d057d12d
parent008868072a77bf79f4bb9d6866e293ed9e8afac7 (diff)
* config.sub: Add support for i[34567]86-pc-udk.
* configure.in: Likewise. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@22701 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog5
-rwxr-xr-xconfig.sub5
-rw-r--r--configure.in3
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a9cebd35a27..e48149e4974 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep 30 22:20:50 1998 Robert Lipe <robertl@dgii.com>
+
+ * config.sub: Add support for i[34567]86-pc-udk.
+ * configure.in: Likewise.
+
Wed Sep 30 03:00:05 1998 Jeffrey A Law (law@cygnus.com)
* Makefile.in (TARGET_CONFIGDIRS): Add libobjc.
diff --git a/config.sub b/config.sub
index a2a52338114..25fb54d4a80 100755
--- a/config.sub
+++ b/config.sub
@@ -131,6 +131,9 @@ case $os in
os=-sco3.2v2
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
;;
+ -udk*)
+ basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+ ;;
-isc)
os=-isc2.2
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
@@ -916,7 +919,7 @@ case $os in
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
| -cygwin32* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
- | -mingw32* | -linux-gnu* | -uxpv* | -mpeix*)
+ | -mingw32* | -linux-gnu* | -uxpv* | -mpeix* | -udk* )
# Remember, each alternative MUST END IN *, to match a version number.
;;
# CYGNUS LOCAL
diff --git a/configure.in b/configure.in
index d3c66804489..7d740fea9d9 100644
--- a/configure.in
+++ b/configure.in
@@ -164,6 +164,9 @@ case "${host}" in
i[3456]86-*-sco*)
host_makefile_frag="${host_makefile_frag} config/mh-sco"
;;
+ i[3456]86-*-udk*)
+ host_makefile_frag="${host_makefile_frag} config/mh-sysv5"
+ ;;
i[3456]86-*-isc*)
host_makefile_frag="${host_makefile_frag} config/mh-sysv"
;;