From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27617 invoked by alias); 30 Apr 2003 01:39:15 -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 27610 invoked from network); 30 Apr 2003 01:39:14 -0000 Received: from unknown (HELO smtp0.euronet.nl) (194.134.35.141) by sources.redhat.com with SMTP; 30 Apr 2003 01:39:14 -0000 Received: from koffie.nl (rot2-p1461.dial.wanadoo.nl [62.234.203.181]) by smtp0.euronet.nl (Postfix) with ESMTP id D688824895; Wed, 30 Apr 2003 03:39:06 +0200 (MEST) Message-ID: <3EAEB9C7.1010504@koffie.nl> Date: Wed, 30 Apr 2003 01:39:00 -0000 From: Segher Boessenkool User-Agent: Mozilla/5.0 (Macintosh; U; PPC; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en MIME-Version: 1.0 To: jal0@attbi.com Cc: gcc-help@gcc.gnu.org Subject: Re: gcc preprocessor file format References: <20030428032912.6D65F34E45@keyser.soze.com> In-Reply-To: <20030428032912.6D65F34E45@keyser.soze.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2003-04/txt/msg00267.txt.bz2 jal0@attbi.com wrote: > is there documented somewhere the format of the file format for .i files ( as > when using the -save-temps options or -E option). It's the same as the input file, except with all preprocessor directives and macros expanded. > i've read through the cpp internals manual and couldn't find what i was looking > for there. From the "normal" GCC manual, section "Options Controlling the Preprocessor": If you use the -E option, nothing is done except preprocessing. Segher