From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id EN1qDOrVkF+nKAAAWB0awg (envelope-from ) for ; Wed, 21 Oct 2020 20:44:26 -0400 Received: by simark.ca (Postfix, from userid 112) id 3076A1EFC3; Wed, 21 Oct 2020 20:44:26 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id DCFA91E58E for ; Wed, 21 Oct 2020 20:44:25 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 3E9F23857C7F; Thu, 22 Oct 2020 00:44:25 +0000 (GMT) Received: from mail-gw01.fsdata.se (proxy01.fsdata.se [89.221.252.211]) by sourceware.org (Postfix) with ESMTPS id 05DBA3857C7F for ; Thu, 22 Oct 2020 00:44:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 05DBA3857C7F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=hederstierna.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=fredrik@hederstierna.com Received: from legion.sec.intra (81.236.17.7) by DAG06.HMC.local (192.168.46.16) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Thu, 22 Oct 2020 02:44:16 +0200 From: Fredrik Hederstierna To: , , , , Subject: [PATCH v3][PR gdb/14383]: gdb: corefile support for arm-none-eabi target Date: Thu, 22 Oct 2020 02:44:00 +0200 Message-ID: <20201022004401.28903-1-fredrik@hederstierna.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [81.236.17.7] X-ClientProxiedBy: PROXY03.HMC.local (192.168.46.53) To DAG06.HMC.local (192.168.46.16) X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" This patch adds corefile support for arm-none-eabi targets. 2020-10-20 Fredrik Hederstierna PR gdb/14383 * Makefile.in (ALL_TARGET_OBS): Add new files below. * configure.tgt: Add support for none target. * arm-tdep.c (arm_gdbarch_init): Added init for default none corefile. * arm-none-tdep.h: New file. * arm-none-tdep.c: New file. * none-tdep.h: New file. * none-tdep.c: New file.