From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16009 invoked by alias); 3 Nov 2014 21:36:57 -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 15987 invoked by uid 89); 3 Nov 2014 21:36:56 -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,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 03 Nov 2014 21:36:54 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sA3Lapvo004163 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 3 Nov 2014 16:36:52 -0500 Received: from [10.3.113.113] (ovpn-113-113.phx2.redhat.com [10.3.113.113]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id sA3LapaP020820; Mon, 3 Nov 2014 16:36:51 -0500 Message-ID: <5457F572.2060709@redhat.com> Date: Mon, 03 Nov 2014 21:36:00 -0000 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: David Malcolm , gcc-patches@gcc.gnu.org, jit@gcc.gnu.org Subject: Re: [PATCH 01/27] gcc: configure and Makefile changes needed by jit References: <1414774977-25605-1-git-send-email-dmalcolm@redhat.com> <1414774977-25605-2-git-send-email-dmalcolm@redhat.com> In-Reply-To: <1414774977-25605-2-git-send-email-dmalcolm@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-11/txt/msg00109.txt.bz2 On 10/31/14 11:02, David Malcolm wrote: > An earlier version of this was posted as: > "[PATCH 2/5] gcc: configure and Makefile changes needed by jit" > https://gcc.gnu.org/ml/gcc-patches/2014-10/msg01169.html > > Since then, I've eliminated the gcc_version, bindir, and pkgconfigdir > additions, and added the FULL_DRIVER_NAME variable and symlink, to > avoid the need to install when running the jit testsuite. > > gcc/ChangeLog: > * Makefile.in (doc_build_sys): New variable, set to "sphinx" if > sphinx is installed, falling back to "texinfo" otherwise. > (FULL_DRIVER_NAME): New variable, adapted from the > install-driver target. New target, a symlink within the builddir, > linked to "xgcc", for use when running the JIT library from the > builddir. > (MOSTLYCLEANFILES): Add FULL_DRIVER_NAME. > (install-driver): Use $(FULL_DRIVER_NAME) rather than spelling it > out. > > * configure.ac (doc_build_sys): New variable, set to "sphinx" if > sphinx is installed, falling back to "texinfo" otherwise. > (GCC_DRIVER_NAME): Generate a gcc-driver-name.h file containing > GCC_DRIVER_NAME for the benefit of jit/internal-api.c. > > * configure: Regenerate. OK. jeff