From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26863 invoked by alias); 27 Jun 2005 21:44:50 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 26845 invoked by uid 22791); 27 Jun 2005 21:44:49 -0000 Received: from sunsite.ms.mff.cuni.cz (HELO sunsite.mff.cuni.cz) (195.113.15.26) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Mon, 27 Jun 2005 21:44:49 +0000 Received: from sunsite.mff.cuni.cz (sunsite.mff.cuni.cz [127.0.0.1]) by sunsite.mff.cuni.cz (8.13.1/8.13.1) with ESMTP id j5RLih2f030399; Mon, 27 Jun 2005 23:44:43 +0200 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.13.1/8.13.1/Submit) id j5RLih6u030398; Mon, 27 Jun 2005 23:44:43 +0200 Date: Mon, 27 Jun 2005 21:44:00 -0000 From: Jakub Jelinek To: Roland McGrath Cc: Glibc hackers Subject: [PATCH] Stop using > 6 years deprecated switch (BZ #1037) Message-ID: <20050627214442.GH7663@sunsite.mff.cuni.cz> Reply-To: Jakub Jelinek Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-SW-Source: 2005-06/txt/msg00016.txt.bz2 Hi! Already gcc 2.95.x preferred -mcpu=v8 over -mv8... 2005-06-27 Jakub Jelinek [BZ #1037] * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: -mv8 is deprecated, use -mcpu=v8. --- libc/sysdeps/unix/sysv/linux/sparc/sparc32/Makefile 31 Aug 2003 17:22:46 -0000 1.11 +++ libc/sysdeps/unix/sysv/linux/sparc/sparc32/Makefile 27 Jun 2005 21:38:44 -0000 @@ -4,7 +4,7 @@ LD += -melf32_sparc # When I get this to work, this is the right thing ifeq ($(subdir),elf) -CFLAGS-rtld.c += -mv8 +CFLAGS-rtld.c += -mcpu=v8 #rtld-routines += dl-sysdepsparc sysdep-others += lddlibc4 install-bin += lddlibc4 Jakub