From patchwork Fri Apr 17 16:11:56 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Max Filippov X-Patchwork-Id: 6303 Received: (qmail 58478 invoked by alias); 17 Apr 2015 16:12:30 -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 58409 invoked by uid 89); 17 Apr 2015 16:12:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, FROM_LOCAL_NOVOWEL, HK_RANDOM_ENVFROM, HK_RANDOM_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-lb0-f174.google.com Received: from mail-lb0-f174.google.com (HELO mail-lb0-f174.google.com) (209.85.217.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 17 Apr 2015 16:12:28 +0000 Received: by lbbuc2 with SMTP id uc2so86879587lbb.2 for ; Fri, 17 Apr 2015 09:12:24 -0700 (PDT) X-Received: by 10.112.61.136 with SMTP id p8mr4875345lbr.107.1429287144744; Fri, 17 Apr 2015 09:12:24 -0700 (PDT) Received: from octofox.metropolis ([5.19.183.212]) by mx.google.com with ESMTPSA id uj9sm2500088lbb.38.2015.04.17.09.12.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 17 Apr 2015 09:12:23 -0700 (PDT) From: Max Filippov To: gdb-patches@sourceware.org Cc: Maxim Grigoriev , Woody LaRue , Marc Gauthier , linux-xtensa@linux-xtensa.org, Pedro Alves , Max Filippov Subject: [PATCH] gdb: fix xtensa build with custom overlay Date: Fri, 17 Apr 2015 19:11:56 +0300 Message-Id: <1429287116-20216-1-git-send-email-jcmvbkbc@gmail.com> The commit 14e361d7aa3bbd8601b0457ee8558344e444c651 ("xtensa-config.c: missing defs.h include") fixed the build of default xtensa configuration by including defs.h in the beginning of xtensa-config.c. Unfortunately this fix doesn't work when gdb is configured for another xtensa core, as the file xtensa-config.c is a part of configuration overlay and it gets overwritten. To fix the build for all existing configurations include defs.h into gdb/xtensa-tdep.h, where the issue (reference to undeclared uint32_t) actually is. 2015-04-17 Max Filippov gdb/ * xtensa-tdep.h: Include defs.h --- gdb/xtensa-tdep.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gdb/xtensa-tdep.h b/gdb/xtensa-tdep.h index adacaf8..4ebe6de 100644 --- a/gdb/xtensa-tdep.h +++ b/gdb/xtensa-tdep.h @@ -21,6 +21,8 @@ /* XTENSA_TDEP_VERSION can/should be changed along with XTENSA_CONFIG_VERSION whenever the "tdep" structure changes in an incompatible way. */ +#include "defs.h" + #define XTENSA_TDEP_VERSION 0x60 /* Xtensa register type. */