* configure.in: vxworks68 gets te-sun3.h.
authorK. Richard Pixley <rich@cygnus>
Thu, 12 Mar 1992 12:47:36 +0000 (12:47 +0000)
committerK. Richard Pixley <rich@cygnus>
Thu, 12 Mar 1992 12:47:36 +0000 (12:47 +0000)
* expr.c: remove limitation that local_labels_dollar or
  local_labels_fb must be < 10.

* symbols.c: remove local_labels_dollar, replace with a function
  interface for a sparse array.  All users adjusted.

gas/ChangeLog
gas/configure.in

index 5bc91e8f6ac9f1759428e75788ee1ab91d9bfe1c..e5f72f9db2e30ab6b9f436ea3c3a89e86bedaac9 100644 (file)
@@ -1,3 +1,25 @@
+Wed Mar 11 23:32:42 1992  K. Richard Pixley  (rich@cygnus.com)
+
+       * configure.in: vxworks68 gets te-sun3.h.
+
+       * expr.c: remove limitation that local_labels_dollar or
+         local_labels_fb must be < 10.
+
+       * symbols.c: remove local_labels_dollar, replace with a function
+         interface for a sparse array.  All users adjusted.
+
+Fri Mar  6 21:57:18 1992  K. Richard Pixley  (rich@cygnus.com)
+
+       * Makefile.in: added check target.
+
+Tue Mar  3 15:45:56 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
+
+       * Makefile.in: added tooldir and program_prefix.
+
+Sun Mar  1 04:43:19 1992  Michael Tiemann  (tiemann@cygnus.com)
+
+       * write.{c,h} (fix_new): Make these declarations consistent.
+
 Sat Feb 29 13:59:10 1992  Michael Tiemann  (tiemann@cygnus.com)
 
        * Makefile.in (strerror.o): Add rule so that broken Sun make can
@@ -10,6 +32,12 @@ Wed Feb 26 19:26:28 1992  Steve Chamberlain  (sac at thepub.cygnus.com)
        * expr.c (operand): if can't work out what sort of operand it is,
        then look through FLT_CHARS for a hint.
 
+Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
+
+       * Makefile.in, configure.in: removed traces of namesubdir,
+         -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
+         copyrights to '92, changed some from Cygnus to FSF.
+
 Tue Feb 25 14:17:15 1992  Steve Chamberlain  (sac at rtl.cygnus.com)
 
        * expr.c: If an expression is single comma, then return with
index 914feaa4b560035f3b37d99eda709f6b0b38b2f2..d50393789af1c742bd2f1409065754e35558f506 100644 (file)
@@ -19,6 +19,9 @@
 #   the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #
 
+# This file was written, and is maintained by K. Richard Pixley
+# <rich@cygnus.com>.
+
 # This file is a shell script that supplies the information necessary
 # to tailor a template configure script into the configure script
 # appropriate for this directory.  For more information, check any
@@ -76,6 +79,7 @@ aix*)
        case "${target_cpu}" in
        i386)   obj_format=coff
                target_cpu=i386aix
+               emulation=i386aix
                ;;
        esac
        ;;
@@ -86,13 +90,13 @@ bsd* | sunos*) obj_format=aout ;;
 
 ebmon-old)
        obj_format=coff
-       need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
+       need_bfd="./../bfd/libbfd.a"
        target_cpu=ebmon29k
        ;;
 
 ebmon)
        obj_format=coffbfd
-       need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
+       need_bfd="./../bfd/libbfd.a"
        target_cpu=ebmon29k
        ;;
 
@@ -100,7 +104,7 @@ generic) obj_format=generic ;;
 
 hms)
        obj_format=coffbfd
-       need_bfd="$(unsubdir)/../bfd$(subdir)/libbfd.a"
+       need_bfd="./../bfd/libbfd.a"
        ;;
 
 sysv32)
@@ -121,6 +125,10 @@ coff* | sysv*)
 vxworks)
        case ${target_cpu} in
        i960) obj_format=bout ;;
+       m68k)
+               obj_format=aout
+               emulation=sun3
+               ;;
        *) obj_format=aout ;;
        esac
        ;;
This page took 0.028485 seconds and 4 git commands to generate.