diff options
author | Stu Grossman <grossman@cygnus> | 1994-02-11 23:34:39 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1994-02-11 23:34:39 +0000 |
commit | 475156577a866f5e885ed88405b12ad27593cb59 (patch) | |
tree | b9f67e6df9601be98708baf5e6dc478ae3aa366c /config.guess | |
parent | c4e48be344051adb0770fefaa07697072af69350 (diff) | |
download | gdb-475156577a866f5e885ed88405b12ad27593cb59.zip gdb-475156577a866f5e885ed88405b12ad27593cb59.tar.gz gdb-475156577a866f5e885ed88405b12ad27593cb59.tar.bz2 |
* config.guess: Add Lynx/rs6000 config support.
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config.guess b/config.guess index 299c6f4..7bed196 100755 --- a/config.guess +++ b/config.guess @@ -217,6 +217,9 @@ EOF TSUNAMI:LynxOS:2.2*:*) echo sparc-lynx-lynxos${UNAME_RELEASE} exit 0 ;; + rs6000:LynxOS:2.2*:*) + echo rs6000-lynx-lynxos${UNAME_RELEASE} + exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 @@ -279,6 +282,14 @@ main() printf("i386-sequent-ptx\n"); exit(0); #endif +#if defined(vax) +#if !defined(ultrix) + printf("vax-dec-bsd\n"); exit(0); +#else + printf("vax-dec-ultrix\n"); exit(0); +#endif +#endif + exit (1); } EOF |