This is the mail archive of the binutils-cvs@sourceware.org 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]
Other format: [Raw text]

[binutils-gdb] MIPS/GAS: Correct `mips-*-windiss' target emulation configuration


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1e3f554897a3f52e12fffc1fecbb250f272e71e1

commit 1e3f554897a3f52e12fffc1fecbb250f272e71e1
Author: Maciej W. Rozycki <macro@mips.com>
Date:   Fri Jan 26 23:05:05 2018 +0000

    MIPS/GAS: Correct `mips-*-windiss' target emulation configuration
    
    Fix a commit 0a44bf6950b3 ("mips-vxworks support"),
    <https://sourceware.org/ml/binutils/2006-03/msg00179.html>, regression
    and override the choice of the `vxworks' target environment introduced
    with commit ea3eed15006f ("Add generic vxworks GAS target."),
    <https://sourceware.org/ml/binutils/2005-01/msg00052.html>, for
    `mips-*-windiss' targets as they have not been converted to the VxWorks
    target format introduced with the former commit, removing a GAS target
    format selection failure:
    
    Assembler messages:
    Fatal error: selected target format 'elf32-bigmips-vxworks' unknown
    
    on any assembly attempt with `mips-windiss' and equivalent target
    configurations.
    
    	gas/
    	* configure.tgt: Use generic emulation for `mips-*-windiss',
    	overriding the blanket choice made for `*-*-windiss'.

Diff:
---
 gas/ChangeLog     | 5 +++++
 gas/configure.tgt | 1 +
 2 files changed, 6 insertions(+)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 6558c7c..d69d4e2 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
 2018-01-26  Maciej W. Rozycki  <macro@mips.com>
 
+	* configure.tgt: Use generic emulation for `mips-*-windiss',
+	overriding the blanket choice made for `*-*-windiss'.
+
+2018-01-26  Maciej W. Rozycki  <macro@mips.com>
+
 	* configure.tgt: Use `mips-*-sysv4*' rather than
 	`mips-*-sysv4*MP*'.
 
diff --git a/gas/configure.tgt b/gas/configure.tgt
index 12bd9b2..6455fbb 100644
--- a/gas/configure.tgt
+++ b/gas/configure.tgt
@@ -351,6 +351,7 @@ case ${generic_target} in
   mips-*-elf*)				fmt=elf ;;
   mips-*-netbsd*)			fmt=elf em=tmips ;;
   mips-*-openbsd*)			fmt=elf em=tmips ;;
+  mips-*-windiss)			fmt=elf ;;
 
   mmix-*-*)				fmt=elf ;;


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