diff options
author | K. Richard Pixley <rich@cygnus> | 1992-03-25 07:52:24 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-03-25 07:52:24 +0000 |
commit | 787bc4fe9fd646b050fb28b9b085dc8a4cebee97 (patch) | |
tree | 280825bbe25eacf934569eb9d8b54ffc693c8656 | |
parent | e855b0f8a84ef8b942ad7d772a52e7747fe8db4a (diff) | |
download | gdb-787bc4fe9fd646b050fb28b9b085dc8a4cebee97.zip gdb-787bc4fe9fd646b050fb28b9b085dc8a4cebee97.tar.gz gdb-787bc4fe9fd646b050fb28b9b085dc8a4cebee97.tar.bz2 |
aix and irix4 support.
-rw-r--r-- | config/mh-aix | 1 | ||||
-rw-r--r-- | config/mh-irix4 | 8 |
2 files changed, 7 insertions, 2 deletions
diff --git a/config/mh-aix b/config/mh-aix new file mode 100644 index 0000000..ff85fa0 --- /dev/null +++ b/config/mh-aix @@ -0,0 +1 @@ +INSTALL = cp diff --git a/config/mh-irix4 b/config/mh-irix4 index a11517e..5864b27 100644 --- a/config/mh-irix4 +++ b/config/mh-irix4 @@ -1,5 +1,9 @@ # Makefile changes for SGI's running IRIX-4.x. -# Tell compiler to use K&R C. We can't compile under the SGI Ansi environment. -CC = cc -cckr +# Tell compiler to use K&R C. We can't compile under the SGI Ansi +# environment. Also bump switch table size so that cp-parse will +# compile. + +CC = cc -cckr -Wf,-XNg1500 SYSV = -DSYSV RANLIB = echo >/dev/null +INSTALL = cp |