From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19037 invoked by alias); 20 May 2003 20:55:32 -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 18926 invoked from network); 20 May 2003 20:55:28 -0000 Received: from unknown (HELO iris1.csv.ica.uni-stuttgart.de) (129.69.118.2) by sources.redhat.com with SMTP; 20 May 2003 20:55:28 -0000 Received: from rembrandt.csv.ica.uni-stuttgart.de ([129.69.118.42]) by iris1.csv.ica.uni-stuttgart.de with esmtp (Exim 3.36 #2) id 19IE8m-001PIN-00; Tue, 20 May 2003 22:55:20 +0200 Received: from ica2_ts by rembrandt.csv.ica.uni-stuttgart.de with local (Exim 3.35 #1 (Debian)) id 19IE8l-0001Ef-00; Tue, 20 May 2003 22:55:19 +0200 Date: Tue, 20 May 2003 20:55:00 -0000 To: "Maciej W. Rozycki" Cc: Alexandre Oliva , echristo@redhat.com, binutils@sources.redhat.com Subject: Re: check mips abi x linker emulation compatibility Message-ID: <20030520205519.GK8833@rembrandt.csv.ica.uni-stuttgart.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i From: Thiemo Seufer X-SW-Source: 2003-05/txt/msg00604.txt.bz2 Maciej W. Rozycki wrote: [snip] > I would really like to see the switch above as: > > case ${target} in > mips64*-linux*) > mips_default_abi=N64_ABI > ;; > mipsn32*-linux* | mips-sgi-irix6*) > mips_default_abi=N32_ABI > ;; > mips*-linux*) > mips_default_abi=O32_ABI > ;; > *) > mips_default_abi=NO_ABI > ;; > esac > > so that one can select which one of the two: n32, (n)64 ABIs he wants as a > default. FWIW, I disagree on changing the default for mips64*-*-linux*, as N32 results in better performance for most applications. N64 is good for large memory applications but slower. I'm not opposed to specialized N32 od N64 configurations though, it would at least save single-ABI systems from mulitlib hassles. Thiemo