From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15578 invoked by alias); 12 Aug 2015 16:59:51 -0000 Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org Received: (qmail 15558 invoked by uid 89); 12 Aug 2015 16:59:50 -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,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-oi0-f49.google.com Received: from mail-oi0-f49.google.com (HELO mail-oi0-f49.google.com) (209.85.218.49) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 12 Aug 2015 16:59:48 +0000 Received: by oio137 with SMTP id 137so12554452oio.0 for ; Wed, 12 Aug 2015 09:59:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=5JCUOEA58qzIND1hd5DA2n7wtmqeJBnTFY3qB2/wcyI=; b=kJqtxD/vH4wqBzhgFBhiU3Y50BV8CY2nGQu8gv5izMUoG0/4PtDkwqjlVOrNONopCT utSCU4DZf6NutjjSkklfUrjN1wyy7nbS2vbauDtt25OXMrTdRKBzMQz/bLIAu8pOQubg uQq1D86iOe8BE2CeeXEPkWcFt1+/aqXe24JPopIYImk6KupvLH90miLitvs1TtpPe6T1 g7daMM0vRyswic4mir2pWyCC57gcl8jfCUSPZh7LpGVoylQtbZuYqEuMsHmlJ6t35OHc 4ZoZhXJ7c1L4ZVorvomdVcAxTYlWqUzPyaQiB6bqPv6HXMupD6fNzFNQdBOiUhbeycKI TIwA== X-Gm-Message-State: ALoCoQnirnuaY1qCi9SFLsKLQkHLFLyi9pm/1boFW4AeRyabmTWZbeeypAgPAbxZtGVkHEJPAYef MIME-Version: 1.0 X-Received: by 10.202.91.2 with SMTP id p2mr19069234oib.92.1439398786760; Wed, 12 Aug 2015 09:59:46 -0700 (PDT) Received: by 10.60.80.6 with HTTP; Wed, 12 Aug 2015 09:59:46 -0700 (PDT) In-Reply-To: <55CB7885.6090900@redhat.com> References: <55CA44C8.7000209@redhat.com> <87mvxxdxys.fsf@tromey.com> <55CB5BB7.4090703@redhat.com> <871tf81nrk.fsf@tromey.com> <55CB7885.6090900@redhat.com> Date: Wed, 12 Aug 2015 16:59:00 -0000 Message-ID: Subject: Re: [PATCH, libjava/classpath]: Fix overriding recipe for target 'gjdoc' build warning From: Ian Lance Taylor To: Jeff Law Cc: Tom Tromey , Uros Bizjak , "gcc-patches@gcc.gnu.org" , GCJ-patches , Andrew Haley Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-q3/txt/msg00013.txt.bz2 On Wed, Aug 12, 2015 at 9:47 AM, Jeff Law wrote: > > If you're comfortable with Go at this point and we have mechanisms in place > to ensure Go only gets built on platforms that support Go, then I think we > should go forward with replacing GCJ with Go. We have the mechanism for disabling Go on systems where it will not work. However, the list of such systems is undoubtedly incomplete at this time. In the top level configure.ac: # Disable the go frontend on systems where it is known to not work. Please keep # this in sync with contrib/config-list.mk. case "${target}" in *-*-darwin* | *-*-cygwin* | *-*-mingw* | *-*-aix*) unsupported_languages="$unsupported_languages go" ;; esac # Disable libgo for some systems where it is known to not work. # For testing, you can easily override this with --enable-libgo. if test x$enable_libgo = x; then case "${target}" in *-*-darwin*) # PR 46986 noconfigdirs="$noconfigdirs target-libgo" ;; *-*-cygwin* | *-*-mingw*) noconfigdirs="$noconfigdirs target-libgo" ;; *-*-aix*) noconfigdirs="$noconfigdirs target-libgo" ;; esac fi