patches for GCC 2.6.1 under VSTa.

From: Basile STARYNKEVITCH <basile_at_nospam.org>
Date: Wed Nov 09 1994 - 02:52:29 PST

I'm linuxing and VSTa-ling at home only as a hobby (ie for fun, not
serious).

I tried to install GNU gcc-2.6.1 for VSTa (technically i patched it
for a cross compiler build on i486-linux for i486-vsta.).

I first installed GNU binutils-2.5.2.tar.gz (which does have alread a
support for VSTa) - i took config.sub from there.

I left home before gcc-2.6.1 for VSta compilation finished - but half of it was done.
(i did have problems for makeing the vsta specific config files, but they always occured
in less than 10 minutes; and this compilation already ran >40min).

The resulting patches (to apply to GNU 2.6.1 distribution) follows.
Please, test them and improve them. Once they are ok, I hope Andy
could post them to GNU, to be added for the 2.6.2 GNU distribution
(which might come out soon, so we better test this in less than a
week).

diff -P -r -C 3 /home/rosser/basile/mimas.tmp/gcc-2.6.1/config/i386/vsta.h gcc-2.6.1-vsta/config/i386/vsta.h
*** /home/rosser/basile/mimas.tmp/gcc-2.6.1/config/i386/vsta.h Thu Jan 1 01:00:00 1970
--- gcc-2.6.1-vsta/config/i386/vsta.h Tue Nov 8 23:29:44 1994
***************
*** 0 ****
--- 1,109 ----
+ /* Definitions for Intel 386 running VSTa
+ Copyright (C) 1992, 1994 Free Software Foundation, Inc.
+
+ (inspired from Linux config.)
+
+ This file is part of GNU CC.
+
+ GNU CC is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ GNU CC is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNU CC; see the file COPYING. If not, write to
+ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+ /* base Intel 386 defs */
+ #include "i386/i386.h"
+ /* Unix specific i386 */
+ #include "i386/unix.h"
+ /* some stuff from Bsd */
+ #include "i386/bsd.h"
+ /* Get perform_* macros to build libgcc.a. */
+ #include "i386/perform.h"
+
+ /* Don't assume anything about the header files. */
+ #define NO_IMPLICIT_EXTERN_C
+
+ /* This is tested by i386/gas.h. */
+ #define YES_UNDERSCORES
+
+ /* Specify predefined symbols in preprocessor. */
+
+ #undef CPP_PREDEFINES
+ #define CPP_PREDEFINES "-Dposix -Di386 -Dvsta -D__vsta__ -Asystem(vsta) -Asystem(posix) -Acpu(i386) -Amachine(i386)"
+
+ #undef CPP_SPEC
+ #if TARGET_CPU_DEFAULT == 2
+ #define CPP_SPEC "%{!m386:-D__i486__} %{posix:-D_POSIX_SOURCE}"
+ #else
+ #define CPP_SPEC "%{m486:-D__i486__} %{posix:-D_POSIX_SOURCE}"
+ #endif
+
+ #undef SIZE_TYPE
+ #define SIZE_TYPE "unsigned int"
+
+ #undef PTRDIFF_TYPE
+ #define PTRDIFF_TYPE "int"
+
+ #undef WCHAR_TYPE
+ #define WCHAR_TYPE "long int"
+
+ #undef WCHAR_TYPE_SIZE
+ #define WCHAR_TYPE_SIZE BITS_PER_WORD
+
+ #undef HAVE_ATEXIT
+
+
+ /* Linux uses ctype from glibc.a. I am not sure how complete it is.
+ For now, we play safe. It may change later. */
+
+ #if 0
+ #undef MULTIBYTE_CHARS
+ #define MULTIBYTE_CHARS 1
+ #endif
+
+ #undef LIB_SPEC
+ /*we dont have any profiling or other so just use -lc*/
+ #define LIB_SPEC \
+ "-lc"
+
+ #undef STARTFILE_SPEC
+ #define STARTFILE_SPEC "{server:crt0srv.o%s} %{!server:crt0.o%s}"
+
+
+
+ /* There are conflicting reports about whether this system uses
+ a different assembler syntax. wilson@cygnus.com says # is right. */
+ #undef COMMENT_BEGIN
+ #define COMMENT_BEGIN "#"
+
+ #undef ASM_APP_ON
+ #define ASM_APP_ON "#APP\n"
+
+ #undef ASM_APP_OFF
+ #define ASM_APP_OFF "#NO_APP\n"
+
+ /* Don't default to pcc-struct-return, because gcc is the only compiler, and
+ we want to retain compatibility with older gcc versions. */
+ #define DEFAULT_PCC_STRUCT_RETURN 0
+
+
+ /* We need that too. */
+ #define HANDLE_SYSV_PRAGMA
+
+ #undef LINK_SPEC
+
+ /* We want to pass -v to linker */
+ #if TARGET_CPU_DEFAULT == 2
+ #define LINK_SPEC "%{v:-v} %{!m386:-m486}"
+ #else
+ #define LINK_SPEC "%{v:-v} %{m486:-m486}"
+ #endif
+
diff -P -r -C 3 /home/rosser/basile/mimas.tmp/gcc-2.6.1/config/i386/x-vsta gcc-2.6.1-vsta/config/i386/x-vsta
*** /home/rosser/basile/mimas.tmp/gcc-2.6.1/config/i386/x-vsta Thu Jan 1 01:00:00 1970
--- gcc-2.6.1-vsta/config/i386/x-vsta Tue Nov 8 20:14:08 1994
***************
*** 0 ****
--- 1,14 ----
+ # (inspired from Linux config.)
+ X_CFLAGS = -DPOSIX
+
+ # The following is needed when compiling stages 2 and 3 because gcc's
+ # limits.h must be picked up before /usr/include/limits.h. This is because
+ # each does an #include_next of the other if the other hasn't been included.
+ # /usr/include/limits.h loses if it gets found first because /usr/include is
+ # at the end of the search order. When a new version of gcc is released,
+ # gcc's limits.h hasn't been installed yet and hence isn't found.
+
+ BOOT_CFLAGS = -O $(CFLAGS) -Iinclude
+
+ # Don't run fixproto
+ STMP_FIXPROTO =
diff -P -r -C 3 /home/rosser/basile/mimas.tmp/gcc-2.6.1/config/i386/xm-vsta.h gcc-2.6.1-vsta/config/i386/xm-vsta.h
*** /home/rosser/basile/mimas.tmp/gcc-2.6.1/config/i386/xm-vsta.h Thu Jan 1 01:00:00 1970
--- gcc-2.6.1-vsta/config/i386/xm-vsta.h Tue Nov 8 20:13:56 1994
***************
*** 0 ****
--- 1,32 ----
+ /* Configuration for GCC for Intel i386 running VSTa
+ Copyright (C) 1993, 1994 Free Software Foundation, Inc.
+
+ (inspired from Linux config.)
+
+ This file is part of GNU CC.
+
+ GNU CC is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ GNU CC is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNU CC; see the file COPYING. If not, write to
+ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+ #include "i386/xm-i386.h"
+
+ #undef BSTRING
+ #define BSTRING
+ #undef bcmp
+ #undef bcopy
+ #undef bzero
+ #undef index
+ #undef rindex
+
+ #define HAVE_VPRINTF
diff -P -r -C 3 /home/rosser/basile/mimas.tmp/gcc-2.6.1/config.sub gcc-2.6.1-vsta/config.sub
*** /home/rosser/basile/mimas.tmp/gcc-2.6.1/config.sub Wed Oct 26 19:23:05 1994
--- gcc-2.6.1-vsta/config.sub Tue Nov 8 20:47:21 1994
***************
*** 4,28 ****
  # This file is (in principle) common to ALL GNU software.
  # The presence of a machine in this file suggests that SOME GNU software
  # can handle that machine. It does not imply ALL GNU software can.
! #
! # This file is free software; you can redistribute it and/or modify
! # it under the terms of the GNU General Public License as published by
! # the Free Software Foundation; either version 2 of the License, or
! # (at your option) any later version.
! #
! # This program is distributed in the hope that it will be useful,
! # but WITHOUT ANY WARRANTY; without even the implied warranty of
! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! # GNU General Public License for more details.
! #
! # You should have received a copy of the GNU General Public License
! # along with this program; if not, write to the Free Software
! # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
!
! # As a special exception to the GNU General Public License, if you
! # distribute this file as part of a program that contains a
! # configuration script generated by Autoconf, you may include it under
! # the same distribution terms that you use for the rest of that program.
  
  # Configuration subroutine to validate and canonicalize a configuration type.
  # Supply the specified configuration type as an argument.
--- 4,24 ----
  # This file is (in principle) common to ALL GNU software.
  # The presence of a machine in this file suggests that SOME GNU software
  # can handle that machine. It does not imply ALL GNU software can.
!
! #This file is free software; you can redistribute it and/or modify
! #it under the terms of the GNU General Public License as published by
! #the Free Software Foundation; either version 2 of the License, or
! #(at your option) any later version.
!
! #This program is distributed in the hope that it will be useful,
! #but WITHOUT ANY WARRANTY; without even the implied warranty of
! #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! #GNU General Public License for more details.
!
! #You should have received a copy of the GNU General Public License
! #along with this program; if not, write to the Free Software
! #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
!
  
  # Configuration subroutine to validate and canonicalize a configuration type.
  # Supply the specified configuration type as an argument.
***************
*** 42,47 ****
--- 38,52 ----
  # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
  # It is wrong to echo any other type of specification.
  
+ if [ x$1 = x ] # CYGNUS LOCAL
+ then
+ echo Configuration name missing. 1>&2
+ echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
+ echo "or $0 ALIAS" 1>&2
+ echo where ALIAS is a recognized configuration type. 1>&2
+ exit 1
+ fi
+
  # First pass through any local machine types.
  case $1 in
          *local*)
***************
*** 71,80 ****
          -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
          -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
          -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
! -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp )
                  os=
                  basic_machine=$1
                  ;;
          -hiux*)
                  os=-hiuxwe2
                  ;;
--- 76,96 ----
          -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
          -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
          -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
! -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
! -sim | -cisco | -oki | -wec | -winbond ) # CYGNUS LOCAL
                  os=
                  basic_machine=$1
                  ;;
+ -scout) # CYGNUS LOCAL
+ ;;
+ -wrs) # CYGNUS LOCAL
+ os=vxworks
+ basic_machine=$1
+ ;;
+ -unixware) # CYGNUS LOCAL
+ os=-sysv4
+ basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
+ ;;
          -hiux*)
                  os=-hiuxwe2
                  ;;
***************
*** 104,118 ****
          -isc*)
                  basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
                  ;;
! -lynx)
                  os=-lynxos
                  ;;
          -ptx*)
                  basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
                  ;;
- -windowsnt*)
- os=`echo $os | sed -e 's/windowsnt/winnt/'`
- ;;
  esac
  
  # Decode aliases for certain CPU-COMPANY combinations.
--- 120,131 ----
          -isc*)
                  basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
                  ;;
! -lynx*) # CYGNUS LOCAL: lynx
                  os=-lynxos
                  ;;
          -ptx*)
                  basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
                  ;;
  esac
  
  # Decode aliases for certain CPU-COMPANY combinations.
***************
*** 123,129 ****
                  | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
                  | alpha | we32k | ns16k | clipper | sparclite | i370 | sh \
                  | powerpc | sparc64 | 1750a | dsp16xx | mips64 | mipsel \
! | pdp11 | mips64el | mips64orion | mips64orionel )
                  basic_machine=$basic_machine-unknown
                  ;;
          # Object if more than one company name word.
--- 136,144 ----
                  | tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
                  | alpha | we32k | ns16k | clipper | sparclite | i370 | sh \
                  | powerpc | sparc64 | 1750a | dsp16xx | mips64 | mipsel \
! | mips64el | mips64orion | mips64orionel \
! | m88110 | sparc | m680[01234]0 | m683?2 | z8k | v70 \
! | h8500) # CYGNUS LOCAL
                  basic_machine=$basic_machine-unknown
                  ;;
          # Object if more than one company name word.
***************
*** 138,154 ****
                | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
                | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
                | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
! | pdp11-* | sh-* | powerpc-* | sparc64-* | mips64-* | mipsel-* \
! | mips64el-* | mips64orion-* | mips64orionel-* )
                  ;;
          # Recognize the various machine names and aliases which stand
          # for a CPU type and a company and sometimes even an OS.
          3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
                  basic_machine=m68000-att
                  ;;
          3b*)
                  basic_machine=we32k-att
                  ;;
          alliant | fx80)
                  basic_machine=fx80-alliant
                  ;;
--- 153,183 ----
                | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
                | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
                | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
! | sh-* | powerpc-* | sparc64-* | mips64-* | mipsel-* \
! | mips64el-* | mips64orion-* | mips64orionel-* \
! | m88110-* | m680[01234]0-* | m683?2-* | z8k-* \
! | h8500-* ) # CYGNUS LOCAL
                  ;;
          # Recognize the various machine names and aliases which stand
          # for a CPU type and a company and sometimes even an OS.
+ 386bsd) # CYGNUS LOCAL
+ basic_machine=i386-unknown
+ os=-bsd
+ ;;
          3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
                  basic_machine=m68000-att
                  ;;
          3b*)
                  basic_machine=we32k-att
                  ;;
+ a29khif) # CYGNUS LOCAL
+ basic_machine=a29k-amd
+ os=-udi
+ ;;
+ adobe68k) # CYGNUS LOCAL
+ basic_machine=m68010-adobe
+ os=-scout
+ ;;
          alliant | fx80)
                  basic_machine=fx80-alliant
                  ;;
***************
*** 178,183 ****
--- 207,216 ----
                  basic_machine=m68k-apollo
                  os=-sysv
                  ;;
+ apollo68bsd) # CYGNUS LOCAL
+ basic_machine=m68k-apollo
+ os=-bsd
+ ;;
          balance)
                  basic_machine=ns32k-sequent
                  os=-dynix
***************
*** 246,251 ****
--- 279,288 ----
          encore | umax | mmax)
                  basic_machine=ns32k-encore
                  ;;
+ es1800 | OSE68k | ose68k | ose | OSE) # CYGNUS LOCAL
+ basic_machine=m68k-ericsson
+ os=-ose
+ ;;
          fx2800)
                  basic_machine=i860-alliant
                  ;;
***************
*** 260,267 ****
                  basic_machine=hppa1.1-hitachi
                  os=-hiuxwe2
                  ;;
! h8300hms)
                  basic_machine=h8300-hitachi
                  os=-hms
                  ;;
          harris)
--- 297,316 ----
                  basic_machine=hppa1.1-hitachi
                  os=-hiuxwe2
                  ;;
! h8300hds)
                  basic_machine=h8300-hitachi
+ os=-hds
+ ;;
+ h8300hms) # CYGNUS LOCAL
+ basic_machine=h8300-hitachi
+ os=-hms
+ ;;
+ h8300xray) # CYGNUS LOCAL
+ basic_machine=h8300-hitachi
+ os=-xray
+ ;;
+ h8500hms) # CYGNUS LOCAL
+ basic_machine=h8500-hitachi
                  os=-hms
                  ;;
          harris)
***************
*** 279,284 ****
--- 328,349 ----
                  basic_machine=m68k-hp
                  os=-hpux
                  ;;
+ w89k-*) # CYGNUS LOCAL
+ basic_machine=hppa1.1-winbond
+ os=-proelf
+ ;;
+ op50n-*) # CYGNUS LOCAL
+ basic_machine=hppa1.1-oki
+ os=-proelf
+ ;;
+ op60c-*) # CYGNUS LOCAL
+ basic_machine=hppa1.1-oki
+ os=-proelf
+ ;;
+ hppro) # CYGNUS LOCAL
+ basic_machine=hppa1.1-hp
+ os=-proelf
+ ;;
          hp9k2[0-9][0-9] | hp9k31[0-9])
                  basic_machine=m68000-hp
                  ;;
***************
*** 291,296 ****
--- 356,365 ----
          hp9k8[0-9][0-9] | hp8[0-9][0-9])
                  basic_machine=hppa1.0-hp
                  ;;
+ hppaosf)
+ basic_machine=hppa1.1-hp
+ os=-osf
+ ;;
          i370-ibm* | ibm*)
                  basic_machine=i370-ibm
                  os=-mvs
***************
*** 312,318 ****
                  basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
                  os=-solaris2
                  ;;
! iris | iris4d)
                  basic_machine=mips-sgi
                  case $os in
                      -irix*)
--- 381,412 ----
                  basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
                  os=-solaris2
                  ;;
! i386mach) # CYGNUS LOCAL
! basic_machine=i386-mach
! os=-mach
! ;;
! i386-vsta | vsta) # CYGNUS LOCAL
! basic_machine=i386-unknown
! os=-vsta
! ;;
! i386-go32 | go32) # CYGNUS LOCAL
! basic_machine=i386-unknown
! os=-go32
! ;;
! i386-linux* | linux) # CYGNUS LOCAL
! basic_machine=i386-unknown
! os=-linux
! ;;
! i386-linux*coff | linuxcoff) # CYGNUS LOCAL
! basic_machine=i386-unknown
! os=-linuxcoff
! ;;
! i386-linux*elf | linuxelf) # CYGNUS LOCAL
! basic_machine=i386-unknown
! os=-linuxelf
! ;;
! iris | iris4d | \
! iris3 | iris4) # CYGNUS LOCAL
                  basic_machine=mips-sgi
                  case $os in
                      -irix*)
***************
*** 346,355 ****
--- 440,461 ----
          mips3*)
                  basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
                  ;;
+ monitor) # CYGNUS LOCAL
+ basic_machine=m68k-rom68k
+ os=-coff
+ ;;
+ msdos) # CYGNUS LOCAL
+ basic_machine=i386-unknown
+ os=-msdos
+ ;;
          ncr3000)
                  basic_machine=i486-ncr
                  os=-sysv4
                  ;;
+ netbsd386)
+ basic_machine=i386-unknown # CYGNUS LOCAL
+ os=-netbsd
+ ;;
          news | news700 | news800 | news900)
                  basic_machine=m68k-sony
                  os=-newsos
***************
*** 362,367 ****
--- 468,477 ----
                  basic_machine=mips-sony
                  os=-newsos
                  ;;
+ necv70) # CYGNUS LOCAL
+ basic_machine=v70-nec
+ os=-sysv
+ ;;
          next | m*-next )
                  basic_machine=m68k-next
                  case $os in
***************
*** 390,395 ****
--- 500,513 ----
          np1)
                  basic_machine=np1-gould
                  ;;
+ OSE68000 | ose68000) # CYGNUS LOCAL
+ basic_machine=m68000-ericsson
+ os=-ose
+ ;;
+ os68k) # CYGNUS LOCAL
+ basic_machine=m68k-none
+ os=-os68k
+ ;;
          pa-hitachi)
                  basic_machine=hppa1.1-hitachi
                  os=-hiuxwe2
***************
*** 418,426 ****
--- 536,552 ----
          ps2)
                  basic_machine=i386-ibm
                  ;;
+ rom68k) # CYGNUS LOCAL
+ basic_machine=m68k-rom68k
+ os=-coff
+ ;;
          rtpc | rtpc-*)
                  basic_machine=romp-ibm
                  ;;
+ sa29200) # CYGNUS LOCAL
+ basic_machine=a29k-amd
+ os=-udi
+ ;;
          sequent)
                  basic_machine=i386-sequent
                  ;;
***************
*** 428,433 ****
--- 554,577 ----
                  basic_machine=sh-hitachi
                  os=-hms
                  ;;
+ sparclite-wrs) # CYGNUS LOCAL
+ basic_machine=sparclite-wrs
+ os=-vxworks
+ ;;
+ sparcfrw) # CYGNUS LOCAL
+ basic_machine=sparcfrw-sun
+ os=-sunos4
+ ;;
+ sparcfrwcompat) # CYGNUS LOCAL
+ basic_machine=sparcfrwcompat-sun
+ os=-sunos4
+ ;;
+ sparclitefrw) # CYGNUS LOCAL
+ basic_machine=sparclitefrw-fujitsu
+ ;;
+ sparclitefrwcompat) # CYGNUS LOCAL
+ basic_machine=sparclitefrwcompat-fujitsu
+ ;;
          sps7)
                  basic_machine=m68k-bull
                  os=-sysv2
***************
*** 435,440 ****
--- 579,591 ----
          spur)
                  basic_machine=spur-unknown
                  ;;
+ st2000) # CYGNUS LOCAL
+ basic_machine=m68k-tandem
+ ;;
+ stratus) # CYGNUS LOCAL
+ basic_machine=i860-stratus
+ os=-sysv4
+ ;;
          sun2)
                  basic_machine=m68000-sun
                  ;;
***************
*** 462,467 ****
--- 613,622 ----
                  basic_machine=sparc-sun
                  os=-sunos4
                  ;;
+ sun4sol2) # CYGNUS LOCAL
+ basic_machine=sparc-sun
+ os=-solaris2
+ ;;
          sun3 | sun3-*)
                  basic_machine=m68k-sun
                  ;;
***************
*** 478,487 ****
--- 633,654 ----
          tower | tower-32)
                  basic_machine=m68k-ncr
                  ;;
+ udi29k) # CYGNUS LOCAL
+ basic_machine=a29k-amd
+ os=-udi
+ ;;
          ultra3)
                  basic_machine=a29k-nyu
                  os=-sym1
                  ;;
+ unixware) # CYGNUS LOCAL
+ os=-sysv4
+ basic_machine=i386-unknown
+ ;;
+ v810 | necv810)
+ basic_machine=v810-nec
+ os=-none
+ ;;
          vaxv)
                  basic_machine=vax-dec
                  os=-sysv
***************
*** 505,510 ****
--- 672,681 ----
          xps | xps100)
                  basic_machine=xps100-honeywell
                  ;;
+ z8ksim) # CYGNUS LOCAL
+ basic_machine=z8k-unknown
+ os=-sim
+ ;;
          none)
                  basic_machine=none-none
                  os=-none
***************
*** 512,517 ****
--- 683,697 ----
  
  # Here we handle the default manufacturer of certain CPU types. It is in
  # some cases the only manufacturer, in others, it is the most popular.
+ w89k) # CYGNUS LOCAL
+ basic_machine=hppa1.1-winbond
+ ;;
+ op50n) # CYGNUS LOCAL
+ basic_machine=hppa1.1-oki
+ ;;
+ op60c) # CYGNUS LOCAL
+ basic_machine=hppa1.1-oki
+ ;;
          mips)
                  basic_machine=mips-mips
                  ;;
***************
*** 524,532 ****
          vax)
                  basic_machine=vax-dec
                  ;;
- pdp11)
- basic_machine=pdp11-dec
- ;;
          we32k)
                  basic_machine=we32k-att
                  ;;
--- 704,709 ----
***************
*** 572,580 ****
          -solaris)
                  os=-solaris2
                  ;;
- -gnu/linux*)
- os=`echo $os | sed -e 's|gnu/linux|linux|'`
- ;;
          # First accept the basic system types.
          # The portable systems comes first.
          # Each alternative must end in a *, to match a version number.
--- 749,754 ----
***************
*** 587,593 ****
                | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
                | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix* \
                | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \
! | -ptx* | -coff* | -winnt*)
                  ;;
          -sunos5*)
                  os=`echo $os | sed -e 's|sunos5|solaris2|'`
--- 761,771 ----
                | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
                | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix* \
                | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \
! | -ptx* \
! | -go32 | -vsta | -sim | -es1800* | -udi | -hms* | -xray | -hds* \
! | -os68k* | -none* | -v88r* | -coff \
! | -abug | -ecoff* | -netware* | -proelf | -os9* )
! # The last three lines above are CYGNUS LOCAL
                  ;;
          -sunos5*)
                  os=`echo $os | sed -e 's|sunos5|solaris2|'`
***************
*** 610,615 ****
--- 788,796 ----
          -acis*)
                  os=-aos
                  ;;
+ -386bsd) # CYGNUS LOCAL
+ os=-bsd
+ ;;
          -ctix* | -uts*)
                  os=-sysv
                  ;;
***************
*** 622,627 ****
--- 803,811 ----
          -svr4)
                  os=-sysv4
                  ;;
+ -unixware) # CYGNUS LOCAL
+ os=-sysv4
+ ;;
          -svr3)
                  os=-sysv3
                  ;;
***************
*** 631,636 ****
--- 815,826 ----
          # This must come after -sysvr4.
          -sysv*)
                  ;;
+ -ose*) # CYGNUS LOCAL
+ os=-ose
+ ;;
+ -es1800*) # CYGNUS LOCAL
+ os=-ose
+ ;;
          -xenix)
                  os=-xenix
                  ;;
***************
*** 659,667 ****
          *-acorn)
                  os=-riscix1.2
                  ;;
- pdp11-*)
- os=-none
- ;;
          *-dec | vax-*)
                  os=-ultrix4.2
                  ;;
--- 849,854 ----
***************
*** 674,679 ****
--- 861,872 ----
                  # default.
                  # os=-sunos4
                  ;;
+ m68*-cisco)
+ os=-aout
+ ;;
+ mips*-cisco)
+ os=-elf
+ ;;
          *-tti) # must be before sparc entry or we get the wrong os.
                  os=-sysv3
                  ;;
***************
*** 683,688 ****
--- 876,890 ----
          *-ibm)
                  os=-aix
                  ;;
+ *-wec) # CYGNUS LOCAL
+ os=-proelf
+ ;;
+ *-winbond) # CYGNUS LOCAL
+ os=-proelf
+ ;;
+ *-oki) # CYGNUS LOCAL
+ os=-proelf
+ ;;
          *-hp)
                  os=-hpux
                  ;;
***************
*** 737,742 ****
--- 939,950 ----
          *-masscomp)
                  os=-rtu
                  ;;
+ *-rom68k) # CYGNUS LOCAL
+ os=-coff
+ ;;
+ *-*bug) # CYGNUS LOCAL
+ os=-coff
+ ;;
          *)
                  os=-none
                  ;;
***************
*** 755,760 ****
--- 963,971 ----
                          -sunos*)
                                  vendor=sun
                                  ;;
+ -bosx*) # CYGNUS LOCAL
+ vendor=bull
+ ;;
                          -lynxos*)
                                  vendor=lynx
                                  ;;
***************
*** 784,789 ****
--- 995,1006 ----
                                  ;;
                          -ptx*)
                                  vendor=sequent
+ ;;
+ -vxworks*)
+ vendor=wrs # CYGNUS LOCAL
+ ;;
+ -hms*) # CYGNUS LOCAL
+ vendor=hitachi
                                  ;;
                  esac
                  basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
diff -P -r -C 3 /home/rosser/basile/mimas.tmp/gcc-2.6.1/configure gcc-2.6.1-vsta/configure
*** /home/rosser/basile/mimas.tmp/gcc-2.6.1/configure Thu Oct 27 18:15:04 1994
--- gcc-2.6.1-vsta/configure Tue Nov 8 21:37:41 1994
***************
*** 803,808 ****
--- 803,816 ----
                  fixincludes=Makefile.in #On Linux, the headers are ok already.
                  broken_install=yes
                  ;;
+ i[345]86-*-vsta*) # Intel 80386's running VSTa microkernel
+ cpu_type=i386
+ xm_file=i386/xm-vsta.h
+ xmake_file=i386/x-vsta
+ tm_file=i386/vsta.h
+ fixincludes=Makefile.in
+ broken_install=yes
+ ;;
          i[345]86-*-lynxos*)
                  cpu_type=i386
                  if [ x$gas = xyes ]

-- 
Basile STARYNKEVITCH   ----  Commissariat a l Energie Atomique
DRN/DMT/SERMA * C.E. Saclay bat.470 * 91191 GIF/YVETTE CEDEX * France
fax: (33) 1- 69.08.23.81;    phone: (33) 1- 69.08.40.66
email: basile@soleil.serma.cea.fr;  homephone: (33) 1- 46.65.45.53
N.B. Any opinions expressed here are solely mine, and not of my organization.
N.B. Les opinions exprimees ici me sont personnelles et n engagent pas le CEA.
Please cite a small part of my mail in all answers
Veuillez citer une petite partie de mon courrier dans vos reponses
Received on Wed Nov 9 00:32:04 1994

This archive was generated by hypermail 2.1.8 : Thu Sep 22 2005 - 15:12:10 PDT