From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,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.2 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 B67ED1F463 for ; Thu, 19 Sep 2019 10:28:39 +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:date :mime-version:in-reply-to:content-type:message-id; q=dns; s= default; b=KWC7xmoHtycotFy0SyVFojkdd/ECYJEYNSKS3QeGfCk6qLN68moqs vA/3IyWZ8wleWzctbOnjQax6PcpmDqJP55v4El1MVOKoGk3vj1h4fX7aXa8xJ+Bj nu1/kahyiw624JX7TC3ZN+RTXRyT8SnPReDtn7VwdtG3xbclCj1JPE= 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:date :mime-version:in-reply-to:content-type:message-id; s=default; bh=qGIxKuHLAq7XcDFt5JhmXToqdLg=; b=tYGyMntjg8clGg9IVnYHMjvo40f9 p+t5ZDuAwCl6Ox8Mi/bjuqSnbJb2JDya1RUvohPexp9LoMxUJz7LviZMO71Fx0kj zFRi/vyTve7ODa0V/F/7Jj7nv4tq2jyNyQBv9gkK0wYNZyyoVZyQY0b+Nf1MRfvL lIrYoro/7OcAbPQ= Received: (qmail 35992 invoked by alias); 19 Sep 2019 10:28:27 -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 35951 invoked by uid 89); 19 Sep 2019 10:28:25 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mx0a-001b2d01.pphosted.com Subject: Re: [PATCH] Add UNSUPPORTED check in elf/tst-pldd. To: Joseph Myers Cc: libc-alpha@sourceware.org References: <877e6yiqsn.fsf@oldenburg2.str.redhat.com> <3b9cb5e4-7c9a-c9a4-449e-43ba98a6ad01@linaro.org> <32961942-e67b-c356-a92d-b6e45c8aaf9d@linux.ibm.com> <87blw9fxrp.fsf@oldenburg2.str.redhat.com> <1d419974-c973-c4c1-f1cd-4bbbf8b074f8@linux.ibm.com> <87tva08ijw.fsf@oldenburg2.str.redhat.com> <21f1131e-5756-3c56-d41f-a37f172c48e8@linux.ibm.com> <303c145e-c9da-3061-48df-76b00ee5b10e@linaro.org> From: Stefan Liebler Date: Thu, 19 Sep 2019 12:28:17 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------EB04A897AE3B8F8A0017A521" x-cbid: 19091910-0012-0000-0000-0000034E05B4 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 19091910-0013-0000-0000-000021888732 Message-Id: <7a048802-0a51-23ea-1a1c-595463dedb03@linux.ibm.com> This is a multi-part message in MIME format. --------------EB04A897AE3B8F8A0017A521 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit On 9/18/19 5:17 PM, Joseph Myers wrote: > This has broken the build for i686-gnu. > > In file included from support_ptrace.c:22: > ../include/sys/prctl.h:2:15: fatal error: sys/prctl.h: No such file or directory > #include_next > ^~~~~~~~~~~~~ > Sorry for that. This include of sys/prctl.h is a leftover from a previous patch version. I've just committed the attached patch which just removes it. Thanks. Stefan --------------EB04A897AE3B8F8A0017A521 Content-Type: text/x-patch; name="20190919_tst-pldd_fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="20190919_tst-pldd_fix.patch" commit 0e055c90cadf2577daaaa2bb8fcb2d0542403d8f Author: Stefan Liebler Date: Thu Sep 19 11:00:55 2019 +0200 Fix building support_ptrace.c on i686-gnu. On i686-gnu the build is broken: In file included from support_ptrace.c:22: ../include/sys/prctl.h:2:15: fatal error: sys/prctl.h: No such file or directory #include_next This patch just removes the unused prctl.h inclusion. ChangeLog: * support/support_ptrace.c: Remove inclusion of sys/prctl.h. diff --git a/support/support_ptrace.c b/support/support_ptrace.c index 616b08cff3..a733adf2c8 100644 --- a/support/support_ptrace.c +++ b/support/support_ptrace.c @@ -19,7 +19,6 @@ #include #include #include -#include int support_ptrace_scope (void) --------------EB04A897AE3B8F8A0017A521--