From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10155 invoked by alias); 13 Apr 2005 22:14:01 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 9902 invoked from network); 13 Apr 2005 22:13:56 -0000 Received: from unknown (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org with SMTP; 13 Apr 2005 22:13:56 -0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.0/8.13.0) with ESMTP id j3DMDqls000945 for ; Thu, 14 Apr 2005 00:13:52 +0200 (CEST) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.4/8.13.3) with ESMTP id j3DMDpld022842 for ; Thu, 14 Apr 2005 00:13:51 +0200 (CEST) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.4/8.13.4/Submit) id j3DMDp4H019946; Thu, 14 Apr 2005 00:13:51 +0200 (CEST) Date: Wed, 13 Apr 2005 22:14:00 -0000 Message-Id: <200504132213.j3DMDp4H019946@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: binutils@sourceware.org Subject: [RFA] Update OpenBSD/mips64 support X-SW-Source: 2005-04/txt/msg00337.txt.bz2 This makes gas work for the new 64-bit OpenBSD/sgi aka OpenBSD/mips64. It's fairly obvious, except for the fact that it replaces an older 32-bit OpenBSD/mips config. I don't think it's worth retaining that config since the members of that family have been discontinued with OpenBSD/arc 2.3 and OpenBSD/pmax 2.7. The latter was released over 5 years ago. Ok? Index: ChangeLog from Mark Kettenis * configure.tgt: Set emulation for mips-*-openbsd*. * configure.in: Set default ABI for mips64-*-openbsd*. * configure: Regenerate. Index: configure.in =================================================================== RCS file: /cvs/src/src/gas/configure.in,v retrieving revision 1.176 diff -u -p -r1.176 configure.in --- configure.in 6 Apr 2005 15:42:14 -0000 1.176 +++ configure.in 13 Apr 2005 22:07:41 -0000 @@ -281,6 +281,9 @@ changequote([,])dnl mips*-linux*) mips_default_abi=O32_ABI ;; + mips64*-openbsd*) + mips_default_abi=N64_ABI + ;; *) mips_default_abi=NO_ABI ;; Index: configure.tgt =================================================================== RCS file: /cvs/src/src/gas/configure.tgt,v retrieving revision 1.7 diff -u -p -r1.7 configure.tgt --- configure.tgt 11 Apr 2005 22:31:37 -0000 1.7 +++ configure.tgt 13 Apr 2005 22:07:41 -0000 @@ -300,7 +300,7 @@ case ${generic_target} in mips-*-sysv*) fmt=ecoff ;; mips-*-elf* | mips-*-rtems*) fmt=elf ;; mips-*-netbsd*) fmt=elf ;; - mips-*-openbsd*) fmt=elf ;; + mips-*-openbsd*) fmt=elf em=tmips ;; mmix-*-*) fmt=elf ;;