From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28170 invoked by alias); 25 Mar 2015 20:01:01 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 28114 invoked by uid 48); 25 Mar 2015 20:00:57 -0000 From: "doko at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug go/65570] New: cannot find package "runtime/cgo" Date: Wed, 25 Mar 2015 20:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: go X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: doko at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ian at airs dot com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-03/txt/msg02850.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65570 Bug ID: 65570 Summary: cannot find package "runtime/cgo" Product: gcc Version: 5.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: go Assignee: ian at airs dot com Reporter: doko at gcc dot gnu.org CC: cmang at google dot com the powerpc build now goes further, either the fix for PR go/65417 or PR go/65462 broke something on aarch64 and ppc64le, at least all lxd builds of ppc, ppc64le and aarch64 fail with: $ cat test.go package main /* #include void hello() { printf("Hello world!\n"); } */ import "C" func main() { C.hello() } $ go build -v -x test.go WORK=/tmp/go-build985134900 package runtime/cgo: cannot find package "runtime/cgo" in any of: /usr/src/runtime/cgo (from $GOROOT) ($GOPATH not set) go install -v -x github.com/lxc/lxd/lxc package github.com/lxc/lxd/lxc imports github.com/gosexy/gettext imports runtime/cgo: cannot find package "runtime/cgo" in any of: /usr/src/runtime/cgo (from $GOROOT) /build/buildd/lxd-0.5/dist/src/runtime/cgo (from $GOPATH) debian/rules:19: recipe for target 'override_dh_install' failed make[1]: *** [override_dh_install] Error 1 Stephane posted a pointer to the complete build logs in https://launchpad.net/bugs/1436530