From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3902 invoked by alias); 8 Aug 2005 13:47:25 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 3869 invoked by uid 22791); 8 Aug 2005 13:47:19 -0000 Received: from [193.22.164.111] (HELO vserver151.vserver151.serverflex.de) (193.22.164.111) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Mon, 08 Aug 2005 13:47:19 +0000 Received: from wlan-client-009.informatik.uni-bremen.de ([134.102.116.10] helo=localhost.localdomain) by vserver151.vserver151.serverflex.de with esmtpsa (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1E27yH-0007yc-9B for gcc-help@gcc.gnu.org; Mon, 08 Aug 2005 15:47:17 +0200 Received: from jmm by localhost.localdomain with local (Exim 4.52) id 1E27yg-0006nZ-7G for gcc-help@gcc.gnu.org; Mon, 08 Aug 2005 15:47:42 +0200 Date: Mon, 08 Aug 2005 13:47:00 -0000 To: gcc-help@gcc.gnu.org Subject: Problem with compiling source code that includes headers with GTY markers Message-ID: <20050808134742.GA26088@informatik.uni-bremen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i From: Moritz Muehlenhoff X-SA-Exim-Connect-IP: 134.102.116.10 X-SA-Exim-Mail-From: jmm@inutil.org X-SA-Exim-Scanned: No (on vserver151.vserver151.serverflex.de); SAEximRunCond expanded to false X-SW-Source: 2005-08/txt/msg00084.txt.bz2 Hi, I'm having a problem with extending GCC 4.0.1: I added a new source file to the gcc/ dir, which doesn't contain GTY markers itself. But since then all files included from the new file, that have GTY markers fail to compile with syntax errors, because the GTY token is unknown. So I assume that I need to declare my new source file for GTY processing, although it only uses these only indirectly, correct? So I've added it to GTFILES from Makefile.in, but this doesn't help either. Does anyone have an idea, what might be the problem? (The new file operates on RTL/RTX data, not's not exactly a front end file, but according to section 18.3 from the gccint docs this seemed like the correct way, or what other options could I try?) Thanks, Moritz