This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

patch for GAS on UnixWare 7.


Kean, this fixes the problem you reported earlier.  You'll now see that
'-Qy' is recognized and ignored and that it emits ELF and not COFF. :-)

I thought I'd submitted something like this in the past.  

This patch is also safe if the current config.guess from the autoconf
master (which returns a slightly string for UnixWare 7) is dropped in.

1999-12-20  Robert Lipe  <robertl@sco.com>

        * configure.in: Add match for i386-*-sysv5*.


Index: gas/configure.in
===================================================================
RCS file: /cvs/binutils/binutils/gas/configure.in,v
retrieving revision 1.13
diff -u -p -r1.13 configure.in
--- configure.in        1999/09/14 23:25:05     1.13
+++ configure.in        1999/12/20 22:35:30
@@ -187,8 +187,10 @@ changequote([,])dnl
       i386-*-linux*coff*)   fmt=coff em=linux ;;
       i386-*-linux-gnu*)    fmt=elf em=linux bfd_gas=yes ;;
       i386-*-lynxos*)       fmt=coff em=lynx ;;
-      i386-*-sysv4* | i386-*-solaris* | i386-*-elf)
+changequote(,)dnl
+      i386-*-sysv[45]* | i386-*-solaris* | i386-*-elf)
                            fmt=elf bfd_gas=yes ;;
+changequote([,])dnl
       i386-*-freebsdaout* | i386-*-freebsd[12].* | i386-*-freebsd[12])
                             fmt=aout em=386bsd ;;
       i386-*-freebsd*)     fmt=elf bfd_gas=yes ;;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]