From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4278 invoked by alias); 27 Mar 2008 10:31:06 -0000 Received: (qmail 4226 invoked by uid 22791); 27 Mar 2008 10:30:50 -0000 X-Spam-Check-By: sourceware.org Received: from fg-out-1718.google.com (HELO fg-out-1718.google.com) (72.14.220.152) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 27 Mar 2008 10:30:12 +0000 Received: by fg-out-1718.google.com with SMTP id d23so3378690fga.28 for ; Thu, 27 Mar 2008 03:30:09 -0700 (PDT) Received: by 10.86.89.4 with SMTP id m4mr743548fgb.45.1206613809599; Thu, 27 Mar 2008 03:30:09 -0700 (PDT) Received: from ?192.168.76.107? ( [195.176.176.226]) by mx.google.com with ESMTPS id 4sm129477fge.3.2008.03.27.03.30.08 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Mar 2008 03:30:08 -0700 (PDT) Message-ID: <47EB772F.3030601@gnu.org> Date: Thu, 27 Mar 2008 10:55:00 -0000 From: Paolo Bonzini User-Agent: Thunderbird 2.0.0.12 (Macintosh/20080213) MIME-Version: 1.0 To: Andreas Schwab CC: GCC Patches Subject: Re: [PATCH] Build system cleanups 1/4 References: <47EB7269.3090309@gnu.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2008-03/txt/msg01664.txt.bz2 Andreas Schwab wrote: > Paolo Bonzini writes: > >> This one removes the PICFLAG variables, which are never set, as well as >> the makefile fragments that used to set PICFLAG *at the time of Cygnus >> configure*. >> >> Committed to gcc and (shortly) to src. > > AFAICS this is used by libiberty when --enable-shared. Uhm, you're right. But then it's been dead code for a while. The toplevel hasn't set PICFLAG since the Autoconfiscation, and hasn't passed PICFLAG to the subdirectories except between this patch: 2004-12-08 David Edelsohn * Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET. * Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG. (EXTRA_TARGET_FLAGS): Add PICFLAG. * Makefile.in: Regenerate. and this patch: 2004-12-25 David Edelsohn Revert 2004-12-08 Makefile changes. Paolo