From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by sourceware.org (Postfix) with ESMTP id 7B51D3870913 for ; Thu, 14 Jan 2021 23:03:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 7B51D3870913 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-414-dXB8cklKPcOJvxPobFqAJA-1; Thu, 14 Jan 2021 18:03:00 -0500 X-MC-Unique: dXB8cklKPcOJvxPobFqAJA-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 9BF6B1005D44; Thu, 14 Jan 2021 23:02:59 +0000 (UTC) Received: from t470.redhat.com (ovpn-112-159.phx2.redhat.com [10.3.112.159]) by smtp.corp.redhat.com (Postfix) with ESMTP id 50C4760C64; Thu, 14 Jan 2021 23:02:58 +0000 (UTC) From: David Malcolm To: Andrea Corallo , jit@gcc.gnu.org, gcc-patches@gcc.gnu.org Cc: nd@arm.com, David Malcolm Subject: [committed] jit: remove "Alpha" warning from docs Date: Thu, 14 Jan 2021 18:02:52 -0500 Message-Id: <20210114230252.3860992-1-dmalcolm@redhat.com> In-Reply-To: References: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" X-Spam-Status: No, score=-14.2 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, KAM_SHORT, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: jit@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Jit mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jan 2021 23:03:04 -0000 On Thu, 2021-01-14 at 23:23 +0100, Andrea Corallo wrote: > Hi Dave and all, > > libgccjit is still advertized as alpha state in the documentation > despite having being introduced few years ago. > > I think we may want to evaluate to promote it as beta with the > following > motivations: > > - The API has been incerementally refined over the years since its > introduction and it looks reasonably complete for fruition now. > > - Example as the Emacs native compiler proves it can be used to > create > production software. > > My main concern (the main issue we are facing) is that the alpha > state > shows up as a limiting factor for certain distributions to package it > [1]. Needless to say this is also a potential limitaiton for other > software to adopt it. > > WDYT? > > Thanks and Regards > > Andrea > > [1] Thanks for pointing this out. I've pushed the following patch to master for gcc 11, as b95d97f1a5f54f55c15bca65ec79b626b53cd40c: I removed the "Alpha" warning from the JIT wiki page on 2020-05-18: https://gcc.gnu.org/wiki/JIT?action=diff&rev1=47&rev2=48 but forgot to remove it from the documentation, which this patch does. gcc/jit/ChangeLog: * docs/cp/index.rst: Remove "Alpha" warning. * docs/index.rst: Likewise. --- gcc/jit/docs/cp/index.rst | 4 ---- gcc/jit/docs/index.rst | 4 ---- 2 files changed, 8 deletions(-) diff --git a/gcc/jit/docs/cp/index.rst b/gcc/jit/docs/cp/index.rst index 254ad59819e..3bffc98a3de 100644 --- a/gcc/jit/docs/cp/index.rst +++ b/gcc/jit/docs/cp/index.rst @@ -28,10 +28,6 @@ This is a collection of "thin" wrapper classes around the C API. Everything is an inline function, implemented in terms of the C API, so there is nothing extra to link against. -Note that libgccjit is currently of "Alpha" quality; -the APIs are not yet set in stone, and they shouldn't be used in -production yet. - Contents: .. toctree:: diff --git a/gcc/jit/docs/index.rst b/gcc/jit/docs/index.rst index 4db1ddd8307..fe3d741d345 100644 --- a/gcc/jit/docs/index.rst +++ b/gcc/jit/docs/index.rst @@ -21,10 +21,6 @@ libgccjit This document describes `libgccjit `_, an API for embedding GCC inside programs and libraries. -Note that libgccjit is currently of "Alpha" quality; -the APIs are not yet set in stone, and they shouldn't be used in -production yet. - There are actually two APIs for the library: * a pure C API: ``libgccjit.h`` -- 2.26.2