From patchwork Fri Dec 3 15:49:03 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 74159 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]) by ozlabs.org (Postfix) with SMTP id 856A8B70E0 for ; Sat, 4 Dec 2010 02:49:33 +1100 (EST) Received: (qmail 30207 invoked by alias); 3 Dec 2010 15:49:29 -0000 Received: (qmail 30198 invoked by uid 22791); 3 Dec 2010 15:49:28 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD, T_TVD_MIME_NO_HEADERS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 03 Dec 2010 15:49:23 +0000 Received: from kpbe18.cbf.corp.google.com (kpbe18.cbf.corp.google.com [172.25.105.82]) by smtp-out.google.com with ESMTP id oB3FnLZM031753 for ; Fri, 3 Dec 2010 07:49:21 -0800 Received: from pvc30 (pvc30.prod.google.com [10.241.209.158]) by kpbe18.cbf.corp.google.com with ESMTP id oB3FnKSt008256 for ; Fri, 3 Dec 2010 07:49:20 -0800 Received: by pvc30 with SMTP id 30so1699521pvc.28 for ; Fri, 03 Dec 2010 07:49:20 -0800 (PST) Received: by 10.142.239.13 with SMTP id m13mr2070685wfh.374.1291391360310; Fri, 03 Dec 2010 07:49:20 -0800 (PST) Received: from coign.google.com ([66.109.105.230]) by mx.google.com with ESMTPS id w42sm2394234wfh.15.2010.12.03.07.49.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 03 Dec 2010 07:49:19 -0800 (PST) From: Ian Lance Taylor To: gcc-patches@gcc.gnu.org Subject: Do not build Go by default Date: Fri, 03 Dec 2010 07:49:03 -0800 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 X-System-Of-Record: true X-IsSubscribed: yes 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 My apologies, I messed up on not building Go by default, and my testing did not catch it because I was using a directory which had already been configured. I committed this patch which I hope will fix the problem. Ian 2010-12-03 Ian Lance Taylor * config-lang.in (build_by_default): Set to no. Index: config-lang.in =================================================================== --- config-lang.in (revision 167407) +++ config-lang.in (working copy) @@ -35,3 +35,6 @@ target_libs="target-libgo target-libffi" lang_requires_boot_languages=c++ gtfiles="\$(srcdir)/go/go-lang.c" + +# Do not build by default. +build_by_default="no"