From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16174 invoked by alias); 24 May 2004 12:21:13 -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 16098 invoked from network); 24 May 2004 12:21:11 -0000 Received: from unknown (HELO smtp.fresnes.info) (213.41.151.22) by sourceware.org with SMTP; 24 May 2004 12:21:11 -0000 Received: from www.fresnes.info (localhost [127.0.0.1]) by smtp.fresnes.info (Postfix) with SMTP id 521BF16B4CC for ; Mon, 24 May 2004 14:21:06 +0200 (CEST) Received: from ns2.afp.com ([158.50.204.4]) (SquirrelMail authenticated user beynet) by www.fresnes.info with HTTP; Mon, 24 May 2004 14:21:06 +0200 (CEST) Message-ID: <46057.158.50.204.4.1085401266.squirrel@www.fresnes.info> Date: Mon, 24 May 2004 12:21:00 -0000 Subject: precompiled headers From: "Yannick Beynet" To: gcc-help@gcc.gnu.org Reply-To: beynet@fresnes.info User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-SW-Source: 2004-05/txt/msg00263.txt.bz2 HI ! I try to use precompiled headers with gcc 3.4.0 It's working but I notice that sometimes they are not used. for example in a cpp file witch starts like : #include "h1.H" #include "h2.H" h1.H.gch is used, but most of time h2.H.gch is not used. I guess it is because h1.H includes some files witch are not also precompiled. Am I right ? Thanks. PS : do you have a solution to force using both h1.H.gch and h1.H.gch