From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28277 invoked by alias); 26 Aug 2002 11:12:57 -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 28261 invoked from network); 26 Aug 2002 11:12:57 -0000 Received: from unknown (HELO r-rr.iij4u.or.jp) (210.130.0.76) by sources.redhat.com with SMTP; 26 Aug 2002 11:12:57 -0000 Received: from localhost (frgw.3in.ne.jp [210.251.121.226]) by r-rr.iij4u.or.jp (8.11.6+IIJ/8.11.6) with ESMTP id g7QBCsN29475 for ; Mon, 26 Aug 2002 20:12:55 +0900 (JST) Message-Id: <200208261112.g7QBCsN29475@r-rr.iij4u.or.jp> To: libc-hacker@sources.redhat.com Subject: Re: it's that time again In-Reply-To: Your message of "Mon, 26 Aug 2002 01:57:11 -0700" <3D69ED67.7060407@redhat.com> References: <3D69ED67.7060407@redhat.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Mon, 26 Aug 2002 04:12:00 -0000 From: kaz Kojima X-Dispatcher: imput version 971024 X-SW-Source: 2002-08/txt/msg00151.txt.bz2 Hi, Ulrich Drepper wrote: > Once these things are handled I'll make the first test release. If all > goes as usual (i.e., nobody is really going to test the code out) I plan > to take a shortcut this time. Since people seem not to be interested in > using test releases and without these uses we'll get nowhere, making a > release is the only way out. The code has fortunately already undergone > substantial testing since it is used in the current RH betas so this > isn't that much of a risk. At least not on x86. For other > architectures, except perhaus PPC, we didn't really get any feedback so > it does not matter. Sorry, I forgot a patch for SH. kaz -- 2002-08-26 Kaz Kojima * sysdeps/sh/Makefile (sysdeps_routines): Add divdi3 in csu dir. (shared-only-routines): Likewise. Index: sysdeps/sh/Makefile =================================================================== RCS file: /cvs/glibc/libc/sysdeps/sh/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- sysdeps/sh/Makefile 12 Dec 2001 18:04:46 -0000 1.1 +++ sysdeps/sh/Makefile 26 Aug 2002 10:53:57 -0000 @@ -1,3 +1,11 @@ ifeq ($(subdir),gmon) sysdep_routines += _mcount endif + +ifeq ($(subdir),csu) +ifeq (yes,$(build-shared)) +# Compatibility +sysdep_routines += divdi3 +shared-only-routines += divdi3 +endif +endif