From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 558 invoked by alias); 2 Jan 2008 17:00:32 -0000 Received: (qmail 498 invoked by uid 22791); 2 Jan 2008 17:00:32 -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, 02 Jan 2008 16:55:05 +0000 Received: from zps35.corp.google.com (zps35.corp.google.com [172.25.146.35]) by smtp-out.google.com with ESMTP id m02Gsmt2030780; Wed, 2 Jan 2008 08:54:48 -0800 Received: from smtp.corp.google.com (spacemonkey2.corp.google.com [192.168.120.114]) by zps35.corp.google.com with ESMTP id m02Gsl89019015 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 2 Jan 2008 08:54:48 -0800 Received: from localhost.localdomain.google.com ([192.168.17.91]) (authenticated bits=0) by smtp.corp.google.com (8.13.8/8.13.8) with ESMTP id m02Gslnh017274 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 2 Jan 2008 08:54:47 -0800 To: NightStrike Cc: gcc-help Subject: Re: top-level configure options, --help References: From: Ian Lance Taylor Date: Fri, 04 Jan 2008 02:18:00 -0000 In-Reply-To: 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: 2008-01/txt/msg00027.txt.bz2 NightStrike writes: > I noticed that --with-sysroot is not listed in --help for the top > level configure, but --with-build-sysroot is. Is that on purpose? > Should the former not be used at all in place of the latter? This is an unfortunate artifact of autoconf --help handling with recursive configure scripts. You'll see both mentioned in the output of gcc/configure --help. --with-build-sysroot needs to be handled at the top level in order to pass down the --sysroot option when compiling libraries; therefore, it appears in the top level --help output. --with-sysroot does not need to be handled at the top level; therefore, it does not appear in the top level --help output. Ian