From patchwork Thu Sep 19 10:28:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Liebler X-Patchwork-Id: 34588 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 Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 35951 invoked by uid 89); 19 Sep 2019 10:28:25 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.0 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.1 spammy= 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: 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> 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 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)