From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20651 invoked by alias); 24 Sep 2009 20:41:36 -0000 Received: (qmail 20638 invoked by uid 22791); 24 Sep 2009 20:41:36 -0000 X-SWARE-Spam-Status: No, hits=-7.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: sourceware.org Received: from cantor.suse.de (HELO mx1.suse.de) (195.135.220.2) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 24 Sep 2009 20:41:32 +0000 Received: from relay2.suse.de (relay-ext.suse.de [195.135.221.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id 1421B90975; Thu, 24 Sep 2009 22:41:30 +0200 (CEST) Date: Thu, 24 Sep 2009 21:26:00 -0000 From: Richard Guenther To: "Joseph S. Myers" Cc: gcc@gcc.gnu.org Subject: Re: Prague GCC folks meeting summary report In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2009-09/txt/msg00524.txt.bz2 On Thu, 24 Sep 2009, Joseph S. Myers wrote: > On Thu, 24 Sep 2009, Richard Guenther wrote: > > > We discussed about features we don't like (PCH and -combine). PCH > > is used but has the issue that improper use is not diagnosed and PCH > > seems to be unmaintained. We agreed on deprecating -combine for 4.5 > > though. > > Can we map -combine to use LTO transparently in 4.6 (deprecate the > implementation, keep the interface)? We thought about that, but the issue with LTO is that you need to use the gcc driver at link time and pass -flto there. But yes, in principle you could continue to handle -combine in the driver by doing the link step to build an object file. Supporting it on cc1 is probably not going to work though. Is -combine widely used? IIRC it has a lot of known issues and is basically unmaintained. Maybe if we deprecate -combine for 4.5 we'll get feedback if it is used. Richard.