From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 65374 invoked by alias); 1 Dec 2019 19:02:01 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 65363 invoked by uid 89); 1 Dec 2019 19:02:01 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.2 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_SOFTFAIL autolearn=ham version=3.3.1 spammy=weimer, Weimer, dc, florian X-HELO: hera.aquilenet.fr Date: Sun, 01 Dec 2019 19:02:00 -0000 From: Samuel Thibault To: Florian Weimer Cc: libc-alpha@sourceware.org, commit-hurd@gnu.org Subject: Re: [hurd,commited 1/3] hurd: Fix ld.so link Message-ID: <20191201190155.qpw4ilcixnjwtl5v@function> References: <20191201185306.1159853-1-samuel.thibault@ens-lyon.org> <20191201185306.1159853-2-samuel.thibault@ens-lyon.org> <87r21ndg9g.fsf@mid.deneb.enyo.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87r21ndg9g.fsf@mid.deneb.enyo.de> User-Agent: NeoMutt/20170609 (1.8.3) X-SW-Source: 2019-12/txt/msg00010.txt.bz2 Florian Weimer, le dim. 01 déc. 2019 19:58:51 +0100, a ecrit: > > diff --git a/sysdeps/mach/hurd/Versions b/sysdeps/mach/hurd/Versions > > index f69d5fef67..cd148c820f 100644 > > --- a/sysdeps/mach/hurd/Versions > > +++ b/sysdeps/mach/hurd/Versions > > @@ -1,7 +1,7 @@ > > libc { > > GLIBC_2.0 { > > # functions with a weak definition in the dynamic linker > > - __access; __getcwd; __mmap; > > + __access; __getcwd; __mmap; __sigprocmask; > > } > > I think I missed the libc update in the patch I posted. But this is > wrong, you need to add it to GLIBC_PRIVATE for both libc and ld. > Then there will be no abilist update, as expected. Then it's not only for that symbol, but others from dl-sysdep.c: I just followed what was done for the others. Samuel