From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15240 invoked by alias); 20 Feb 2011 18:07:32 -0000 Received: (qmail 15230 invoked by uid 22791); 20 Feb 2011 18:07:32 -0000 X-SWARE-Spam-Status: No, hits=-0.9 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,TW_JV,TW_RW,TW_WX X-Spam-Check-By: sourceware.org Received: from mail-iy0-f175.google.com (HELO mail-iy0-f175.google.com) (209.85.210.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 20 Feb 2011 18:07:27 +0000 Received: by iyj8 with SMTP id 8so5379004iyj.20 for ; Sun, 20 Feb 2011 10:07:26 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.206.197 with SMTP id fv5mr473440ibb.84.1298225246272; Sun, 20 Feb 2011 10:07:26 -0800 (PST) Received: by 10.231.35.129 with HTTP; Sun, 20 Feb 2011 10:07:26 -0800 (PST) In-Reply-To: References: Date: Sun, 20 Feb 2011 19:30:00 -0000 Message-ID: Subject: Re: -no-integrated-cpp option From: kevin diggs To: Ian Lance Taylor Cc: ali hagigat , gcc-help@gcc.gnu.org Content-Type: text/plain; charset=ISO-8859-1 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: 2011-02/txt/msg00315.txt.bz2 On Sun, Feb 20, 2011 at 7:44 AM, Ian Lance Taylor wrote: > > cc1obj is the Objective C compiler. cc1plus is the C++ compiler. cc1 > is the C comipler. Currently they are separate programs. Currently > they include a preprocessor, but the preprocessor can also be run in a > separate step, which is what this option does. It is possible that in > the future cc1obj, cc1plus, cc1, and others, will be merged into a > single program. > > Ian > These are installed under the 'libexec' directory. For example for my 3.4.6 compiler installed at /opt/gcc-3.4.6-profiled-gnu: [kevdig@PowerMac8600B gcc-3.4.6-profiled-gnu]$ ls -l libexec/gcc/powerpc-unknown-linux-gnu/3.4.6/ total 32192 -rwxr-xr-x 1 root root 4863030 Dec 6 18:30 cc1 -rwxr-xr-x 1 root root 4932076 Dec 6 18:31 cc1obj -rwxr-xr-x 1 root root 5408026 Dec 6 18:31 cc1plus -rwxr-xr-x 1 root root 289056 Dec 6 18:31 collect2 -rwxr-xr-x 1 root root 5133170 Dec 6 18:31 f771 -rwxr-xr-x 1 root root 7324602 Dec 6 18:31 gnat1 drwxr-xr-x 2 root root 4096 Dec 6 18:31 install-tools -rwxr-xr-x 1 root root 4874096 Dec 6 18:31 jc1 -rwxr-xr-x 1 root root 36926 Dec 6 18:31 jvgenmain kevin