From patchwork Fri Feb 6 09:44:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 437132 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 24C0C140119 for ; Fri, 6 Feb 2015 20:45:00 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=Vim0ePxGor6ddjZwwb7y3+jvyNvcqHpw3Y8B4cOfoSm7QFCKrFYpo IJKHLcEDMYJXK0dPLczCL0DLSOgWo0o5Hyne1SHe7QoD6nax2oSDew44Z5jaqQHg YPxqa0iE/t1qz+ucNQqENjxvGcOCr70FJ9GsNUyJ13HDvb+PvNuTqA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=iV2baUvZ+pSV5tJpuBNZPtK/byY=; b=YCf3r5NAr699AFwB0+Va 0OAqeM42Q9nVRu4hrF34KbD3f6sZ9FmY5X0Cp3BwDvg4Gb4PBSiD//w+/a7b9Q+e 1sbiKqCcFDrWsQ6PYmYwuf3d/4oX7FmpVk56vV4Sh1WuWeDtUGkuJ0GTwqGc8vsO J2Df7784MwCq7U+66B+eA4c= Received: (qmail 14032 invoked by alias); 6 Feb 2015 09:44:30 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 14019 invoked by uid 89); 6 Feb 2015 09:44:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: outpost19.zedat.fu-berlin.de Received: from outpost19.zedat.fu-berlin.de (HELO outpost19.zedat.fu-berlin.de) (130.133.4.112) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 06 Feb 2015 09:44:28 +0000 Received: from relay1.zedat.fu-berlin.de ([130.133.4.67]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1YJfSa-003CJg-H6>; Fri, 06 Feb 2015 10:44:24 +0100 Received: from mx.physik.fu-berlin.de ([160.45.64.218]) by relay1.zedat.fu-berlin.de (Exim 4.85) with esmtps (envelope-from ) id <1YJfSa-001X0I-FX>; Fri, 06 Feb 2015 10:44:24 +0100 Received: from login1.physik.fu-berlin.de ([160.45.66.207]) by mx.physik.fu-berlin.de with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YJfSW-0005VO-SS; Fri, 06 Feb 2015 10:44:20 +0100 Received: from tburnus by login1.physik.fu-berlin.de with local (Exim 4.80 #3 (Debian)) id 1YJfSW-0007iG-MB; Fri, 06 Feb 2015 10:44:20 +0100 Date: Fri, 6 Feb 2015 10:44:20 +0100 From: Tobias Burnus To: gcc-patches@gcc.gnu.org, Gerald Pfeifer Subject: [Patch, WWWDOCS] gcc-5/changes.html: Mention that C FE can be build as libcc1.so Message-ID: <20150206094420.GA10095@physik.fu-berlin.de> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) I think it is useful to know that one can build libcc1.so - also as advertisement. Thus, I propose to include something like the quip in the attachment. GDB uses it in version 7.9, which is not yet released but already branched off. OK? - Other suggestions or comments? Tobias Index: htdocs/gcc-5/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v retrieving revision 1.78 diff -u -p -r1.78 changes.html --- htdocs/gcc-5/changes.html 5 Feb 2015 13:52:05 -0000 1.78 +++ htdocs/gcc-5/changes.html 6 Feb 2015 08:20:50 -0000 @@ -237,6 +237,10 @@ calloc (size_t x, size_t y) -Wno-discarded-qualifiers.
  • The C front end now generates more precise caret diagnostics.
  • The -pg option now only affects the current file in a LTO build.
  • +
  • The C front end can now also be build as library, which is for instance + used by gdb 7.9 for compiling source code used for code injection.
  • C++