From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 130265 invoked by alias); 6 Apr 2015 17:19:35 -0000 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 Received: (qmail 130255 invoked by uid 89); 6 Apr 2015 17:19:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 06 Apr 2015 17:19:34 +0000 Received: from svr-orw-fem-05.mgc.mentorg.com ([147.34.97.43]) by relay1.mentorg.com with esmtp id 1YfAgM-00000q-4a from Sandra_Loosemore@mentor.com ; Mon, 06 Apr 2015 10:19:30 -0700 Received: from [IPv6:::1] (147.34.91.1) by svr-orw-fem-05.mgc.mentorg.com (147.34.97.43) with Microsoft SMTP Server id 14.3.224.2; Mon, 6 Apr 2015 10:19:29 -0700 Message-ID: <5522BFF2.9040801@codesourcery.com> Date: Mon, 06 Apr 2015 17:19:00 -0000 From: Sandra Loosemore User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: Gerald Pfeifer CC: Uros Bizjak , Jan Hubicka , Subject: Re: [PATCH, bootstrap]: Add bootstrap-lto-noplugin build configuration (PR65537) References: <20150326011148.GD8802@atrey.karlin.mff.cuni.cz> In-Reply-To: Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-04/txt/msg00202.txt.bz2 On 04/06/2015 06:45 AM, Gerald Pfeifer wrote: > > Thoughts on the below? Sandra? > > =================================================================== > --- doc/install.texi (revision 221832) > +++ doc/install.texi (working copy) > @@ -2525,10 +2525,10 @@ > > @item @samp{bootstrap-lto-noplugin} > This option is similar to @code{bootstrap-lto}, but is intended for > -hosts that do not support the linker plugin. Please note that static > -libraries are not compiled with link time optimizations without > -linker plugin. Since GCC middle-end and back-end are in libbackend.a, > -it means that only part of the frontend is actually LTO optimized. > +hosts that do not support the linker plugin. Without the linker plugin > +static libraries are not compiled with link-time optimizations. Since > +the GCC middle end and back end are in @file{libbackend.a} this means > +that only the frontend is actually LTO optimized. s/frontend/front end/ ?? (Since we have "middle end" and "back end" on the previous line.) > > @item @samp{bootstrap-debug} > Verifies that the compiler generates the same executable code, whether > -Sandra