From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 96627 invoked by alias); 10 Sep 2019 20:41:48 -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 96619 invoked by uid 89); 10 Sep 2019 20:41:48 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-6.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=H*f:sk:AM6PR10, HX-Received:aa7 X-HELO: mail-ed1-f47.google.com Received: from mail-ed1-f47.google.com (HELO mail-ed1-f47.google.com) (209.85.208.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 10 Sep 2019 20:41:47 +0000 Received: by mail-ed1-f47.google.com with SMTP id c19so18498290edy.10 for ; Tue, 10 Sep 2019 13:41:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=golang-org.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc:content-transfer-encoding; bh=tXBEbjSk8doalrC2aDV/RzG0kKZukgH6E+O8EGRkBSc=; b=eSCcjk4C0KikT92nzvOL9kPGLd5wMnRd1nA1ede0zt8kQLy0vYRrcjpkoPmGC+VpF7 PAY00cMvf49hh9wKA5pVLz7sVpL/m3BFpkNawRPFq6eYf1Wz3V15u4KIC96l/rxgcW98 5XelC5YAQ2NXIKZimyGBM2vph/Mdt8dBYDsPpQJ2ogX4HF3Nfmh0JGV8pWGSKALnW++J eaFW1uMPKB0EZsmTyOoYNMqjpxFj1cem6oErXS3PuUtATtK9AODUK/xzz1yQAe9csv/+ 7LSd6HHZc15euTvD+9Mu72YAOcegAJ1O5UjStZXN/O3EClwhBOfsHVs7KUtQkPbH3Tdl hEmw== MIME-Version: 1.0 References: <87k1akl969.fsf@igel.home> <87lfuxqj6c.fsf@igel.home> In-Reply-To: <87lfuxqj6c.fsf@igel.home> From: Ian Lance Taylor Date: Tue, 10 Sep 2019 20:41:00 -0000 Message-ID: Subject: Re: [gofrontend-dev] Re: libgo: Update to Go 1.13beta1 release To: Andreas Schwab Cc: Bernd Edlinger , "gcc-patches@gcc.gnu.org" , "gofrontend-dev@googlegroups.com" Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-SW-Source: 2019-09/txt/msg00694.txt.bz2 On Mon, Sep 9, 2019 at 2:00 PM Andreas Schwab wrote: > > ../../../libgo/go/golang.org/x/sys/cpu/cpu.go:17:30: error: reference to = undefined name =E2=80=98cacheLineSize=E2=80=99 > 17 | type CacheLinePad struct{ _ [cacheLineSize]byte } > | ^ > ../../../libgo/go/golang.org/x/sys/cpu/cpu_linux.go:56:2: error: referenc= e to undefined name =E2=80=98doinit=E2=80=99 > 56 | doinit() > | ^ Thanks, should be fixed by SVN revision 275611, just committed. Ian