From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1231 invoked by alias); 26 Jul 2007 21:20:12 -0000 Received: (qmail 1217 invoked by uid 22791); 26 Jul 2007 21:20:11 -0000 X-Spam-Check-By: sourceware.org Received: from alnrmhc14.comcast.net (HELO alnrmhc14.comcast.net) (204.127.225.94) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 26 Jul 2007 21:20:09 +0000 Received: from lucon.org ([24.6.230.138]) by comcast.net (alnrmhc14) with ESMTP id <20070726212007b1400s78hme>; Thu, 26 Jul 2007 21:20:08 +0000 Received: by lucon.org (Postfix, from userid 500) id EA3CEF7F60; Thu, 26 Jul 2007 14:20:06 -0700 (PDT) Date: Thu, 26 Jul 2007 21:30:00 -0000 From: "H.J. Lu" To: binutils@sources.redhat.com Cc: kai.tietz@onevision.com Subject: PATCH: Don't include x86_64coff_vec for x86_64-*-mingw* Message-ID: <20070726212006.GA11778@lucon.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.14 (2007-02-12) Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2007-07/txt/msg00470.txt.bz2 Why does x86_64-*-mingw* include x86_64coff_vec? I got [hjl@gnu-6 dean-1]$ ./usr/local/bin/objdump -h Sample64.obj ./usr/local/bin/objdump: Sample64.obj: File format is ambiguous ./usr/local/bin/objdump: Matching formats: pe-x86-64 coff-x86-64 i[3-7]86-*-mingw32* doesn't include i386coff_vec. I don't think x86_64-*-mingw* should. I will check it in if there is no objection by tomorrow. H.J. --- 2007-07-26 H.J. Lu * config.bfd (x86_64-*-mingw*): Don't include x86_64coff_vec. --- bfd/config.bfd.pecoff 2007-07-24 14:01:59.000000000 -0700 +++ bfd/config.bfd 2007-07-26 14:14:25.000000000 -0700 @@ -598,7 +598,7 @@ case "${targ}" in ;; x86_64-*-mingw*) targ_defvec=x86_64pe_vec - targ_selvecs="x86_64pe_vec x86_64pei_vec x86_64coff_vec bfd_elf64_x86_64_vec" + targ_selvecs="x86_64pe_vec x86_64pei_vec bfd_elf64_x86_64_vec" want64=true targ_underscore=yes ;;