From patchwork Fri Nov 24 21:09:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Weigand X-Patchwork-Id: 24504 Received: (qmail 39046 invoked by alias); 24 Nov 2017 21:09:24 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 39015 invoked by uid 89); 24 Nov 2017 21:09:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.9 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:740 X-HELO: mx0a-001b2d01.pphosted.com Received: from mx0b-001b2d01.pphosted.com (HELO mx0a-001b2d01.pphosted.com) (148.163.158.5) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 24 Nov 2017 21:09:22 +0000 Received: from pps.filterd (m0098420.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.21/8.16.0.21) with SMTP id vAOL9Kr8116329 for ; Fri, 24 Nov 2017 16:09:20 -0500 Received: from e06smtp13.uk.ibm.com (e06smtp13.uk.ibm.com [195.75.94.109]) by mx0b-001b2d01.pphosted.com with ESMTP id 2eer7fwx1q-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Fri, 24 Nov 2017 16:09:14 -0500 Received: from localhost by e06smtp13.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 24 Nov 2017 21:09:12 -0000 Received: from b06cxnps4076.portsmouth.uk.ibm.com (9.149.109.198) by e06smtp13.uk.ibm.com (192.168.101.143) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Fri, 24 Nov 2017 21:09:10 -0000 Received: from d06av23.portsmouth.uk.ibm.com (d06av23.portsmouth.uk.ibm.com [9.149.105.59]) by b06cxnps4076.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id vAOL9AFj42532878 for ; Fri, 24 Nov 2017 21:09:10 GMT Received: from d06av23.portsmouth.uk.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 705EDA404D for ; Fri, 24 Nov 2017 21:03:47 +0000 (GMT) Received: from d06av23.portsmouth.uk.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 5DCEAA4040 for ; Fri, 24 Nov 2017 21:03:47 +0000 (GMT) Received: from oc3748833570.ibm.com (unknown [9.164.187.199]) by d06av23.portsmouth.uk.ibm.com (Postfix) with ESMTP for ; Fri, 24 Nov 2017 21:03:47 +0000 (GMT) Received: by oc3748833570.ibm.com (Postfix, from userid 1000) id 9EE8BD802C3; Fri, 24 Nov 2017 22:09:09 +0100 (CET) Subject: [spu] Fix spu-linux native build To: gdb-patches@sourceware.org Date: Fri, 24 Nov 2017 22:09:09 +0100 (CET) From: "Ulrich Weigand" MIME-Version: 1.0 X-TM-AS-GCONF: 00 x-cbid: 17112421-0012-0000-0000-000005914FBD X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17112421-0013-0000-0000-0000190C2D6A Message-Id: <20171124210909.9EE8BD802C3@oc3748833570.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:, , definitions=2017-11-24_07:, , signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=1 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1711240286 Hello, this adds a missing file to NATDEPFILES. Bye, Ulrich gdb/ChangeLog: 2017-11-24 Ulrich Weigand * configure.nat : Add fork-inferior.o to NATDEPFILES. diff --git a/gdb/configure.nat b/gdb/configure.nat index 14a1b00..962abd6 100644 --- a/gdb/configure.nat +++ b/gdb/configure.nat @@ -482,7 +482,8 @@ case ${gdb_host} in NAT_FILE= NAT_CDEPS= LOADLIBES= - NATDEPFILES='spu-linux-nat.o fork-child.o inf-ptrace.o \ + NATDEPFILES='spu-linux-nat.o \ + inf-ptrace.o fork-child.o fork-inferior.o \ linux-procfs.o linux-ptrace.o linux-waitpid.o \ linux-personality.o linux-namespaces.o' ;;