From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21016 invoked by alias); 28 Nov 2007 18:28:02 -0000 Received: (qmail 21003 invoked by uid 22791); 28 Nov 2007 18:28:02 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.45.13) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 28 Nov 2007 18:27:58 +0000 Received: from zps76.corp.google.com (zps76.corp.google.com [172.25.146.76]) by smtp-out.google.com with ESMTP id lASIRnuW000689; Wed, 28 Nov 2007 10:27:49 -0800 Received: from localhost.localdomain.google.com (dhcp-172-18-118-200.corp.google.com [172.18.118.200]) (authenticated bits=0) by zps76.corp.google.com with ESMTP id lASIRng5030646 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 28 Nov 2007 10:27:49 -0800 To: Sampath Koppole Cc: gcc-help@gcc.gnu.org Subject: Re: C Preprocessor for 64-bit References: <637755.14634.qm@web51305.mail.re2.yahoo.com> From: Ian Lance Taylor Date: Wed, 28 Nov 2007 18:43:00 -0000 In-Reply-To: <637755.14634.qm@web51305.mail.re2.yahoo.com> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2007-11/txt/msg00382.txt.bz2 Sampath Koppole writes: > I don't see cpp (the C-Preprocessor) for the X86_64. > Is there some flag I should put in for the 64-bit or > does the 32-bit cpp work with 64-bit ? Or should I do > something else ? cpp is not normally shipped as a separate program in current gcc. I know that some distros have a cpp program, but I don't think it's part of gcc. To run the preprocessor, use gcc -E. Ian