From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.6 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.1 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 2E73F1F597 for ; Wed, 25 Jul 2018 07:38:32 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type; q=dns; s=default; b=A+zF 4YDXiHkiSZ6vQRRVBER5kZh9NAA5ZPavq60l2EBW+VZm5smsRu0pz5qE+LVkUbC+ 08C7jeqRpxxwH3BbbM5A0M8wS6xnYGGfqk6gr9iCdczHNQeHNFp4iAqKBVM4Yt2S NHZno/vZ/nbVtv5R85pCyEpkLU3mReH0xksNzsY= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type; s=default; bh=aiPCqndkif 9DrpzFs9Png+NrJLo=; b=FuPvdmaVAAFrvE45BtkjgKUAmdqk7QsMFXtmXXYQMg zsrcejBE3Xm0q46xMprGNEdVRbHUnU16zoEFixZd4JHUBcrZYVpk1lanL+dnb/CB RXFdg92W77IS/4uHF/7l9r2cuc1kjpqNZpiHPvUoUT0Rb+xlrPbx4yLjJT4hQfXU A= Received: (qmail 49993 invoked by alias); 25 Jul 2018 07:38:29 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 49984 invoked by uid 89); 25 Jul 2018 07:38:28 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mx1.redhat.com Subject: Re: [PATCH v8 1/8] nptl: Add C11 threads thrd_* functions To: Andreas Schwab , Adhemerval Zanella Cc: libc-alpha@sourceware.org References: <1517591084-11347-1-git-send-email-adhemerval.zanella@linaro.org> <1517591084-11347-2-git-send-email-adhemerval.zanella@linaro.org> From: Florian Weimer Message-ID: <87f201d8-2008-5579-19ad-cb0dded89f93@redhat.com> Date: Wed, 25 Jul 2018 09:38:23 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------FDD7748D00181C596A3F6310" This is a multi-part message in MIME format. --------------FDD7748D00181C596A3F6310 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit On 07/25/2018 09:20 AM, Andreas Schwab wrote: > On Feb 02 2018, Adhemerval Zanella wrote: > >> @@ -197,7 +197,8 @@ linknamespace-libs-xsi = $(linknamespace-libs-posix) \ >> $(common-objpfx)crypt/libcrypt.a >> linknamespace-libs-ISO = $(linknamespace-libs-isoc) >> linknamespace-libs-ISO99 = $(linknamespace-libs-isoc) >> -linknamespace-libs-ISO11 = $(linknamespace-libs-isoc) >> +linknamespace-libs-ISO11 = $(linknamespace-libs-isoc) \ >> + $(common-objpfx)nptl/libpthread.a >> linknamespace-libs-XPG4 = $(linknamespace-libs-isoc) \ >> $(common-objpfx)crypt/libcrypt.a > > You have reverted commit e69d994a63, which breaks --disable-crypt > builds. Oh. So we need this fix? Thanks, Florian --------------FDD7748D00181C596A3F6310 Content-Type: text/x-patch; name="conform.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="conform.patch" Subject: [PATCH] conform: Do not add libcrypt twice in linknamespace tests To: libc-alpha@sourceware.org 2018-07-25 Florian Weimer * conform/Makefile (linknamespace-libs-XPG4): Do not add libcrypt twice. diff --git a/conform/Makefile b/conform/Makefile index a0ab70e302..98a9f8ea3e 100644 --- a/conform/Makefile +++ b/conform/Makefile @@ -198,8 +198,7 @@ linknamespace-libs-ISO = $(linknamespace-libs-isoc) linknamespace-libs-ISO99 = $(linknamespace-libs-isoc) linknamespace-libs-ISO11 = $(linknamespace-libs-isoc) \ $(common-objpfx)nptl/libpthread.a -linknamespace-libs-XPG4 = $(linknamespace-libs-isoc) \ - $(common-objpfx)crypt/libcrypt.a +linknamespace-libs-XPG4 = $(linknamespace-libs-isoc) linknamespace-libs-XPG42 = $(linknamespace-libs-XPG4) linknamespace-libs-POSIX = $(linknamespace-libs-thr) linknamespace-libs-UNIX98 = $(linknamespace-libs-xsi) --------------FDD7748D00181C596A3F6310--