From patchwork Tue Oct 4 10:15:25 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 16235 Received: (qmail 73251 invoked by alias); 4 Oct 2016 10:15:42 -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 73231 invoked by uid 89); 4 Oct 2016 10:15:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=2016-10-04 X-HELO: mail-pa0-f65.google.com Received: from mail-pa0-f65.google.com (HELO mail-pa0-f65.google.com) (209.85.220.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 04 Oct 2016 10:15:31 +0000 Received: by mail-pa0-f65.google.com with SMTP id hh10so2575975pac.0 for ; Tue, 04 Oct 2016 03:15:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=wRyRz2gnFmygkfigbrE6YdTFOaI3oEKfeb5RXxgHZ/w=; b=gav/xzTdECUd0hvm+5eiilepxHcBij5Q7eNO5GVoNgSH5W9oy61GTqzisPVgcDVBPz Vb/YS2YdjL/3mTsHWs9CLz1NGnWQ+Hr91/l1fdyNPlubodztvYZQmbyfyghIVKJ6nvQt PmWeYR1yjQBnXzwuT0W1Bky8gGLHZyIxzKeCyRpSQe/glZBHVLO6E1FhhDmO/+JEfVjB 0/RUJc/1XwWp9v3OKGYWtSure6o6yAOMW7KRdoGkJ57RIY304YFWZJ7PctRQOD2Fx57A /e0PlBf424xk7VR9EGBwtkd0qng5rOu5jsa6EePXKg17cQbhRqFLro0upTnW+STYpDjX pyLw== X-Gm-Message-State: AA6/9RnP12L6PAoOqS5W+fjzAeoKb++KMbGCt4FPaWfc7/vig+eycMRUxUCRcc8oqtxgGA== X-Received: by 10.66.165.172 with SMTP id yz12mr3780814pab.208.1475576129363; Tue, 04 Oct 2016 03:15:29 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id w186sm53825861pfb.84.2016.10.04.03.15.28 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 04 Oct 2016 03:15:28 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH] Generate s390 target description c files Date: Tue, 4 Oct 2016 11:15:25 +0100 Message-Id: <1475576125-28285-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes If I delete all target description c files under features/ directory, and run make GDB=/scratch/yao/gdb/build-git/all-targets/gdb/gdb cfiles, some s390 target description c files are not generated. This patch adds these s390 xml files to XMLTOC, so these c files can be generated. gdb: 2016-10-04 Yao Qi * features/Makefile (XMLTOC): Add s390-tevx-linux64.xml, s390-vx-linux64.xml, s390x-tevx-linux64.xml and s390x-vx-linux64.xml. --- gdb/features/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gdb/features/Makefile b/gdb/features/Makefile index 6282adf..d52ff4e 100644 --- a/gdb/features/Makefile +++ b/gdb/features/Makefile @@ -215,6 +215,10 @@ XMLTOC = \ s390x-linux64v1.xml \ s390x-linux64v2.xml \ s390x-te-linux64.xml \ + s390-tevx-linux64.xml \ + s390-vx-linux64.xml \ + s390x-tevx-linux64.xml \ + s390x-vx-linux64.xml \ tic6x-c62x-linux.xml \ tic6x-c62x.xml \ tic6x-c64x-linux.xml \