Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime: Unable to build go project on macOS 10.12 beta 4 #16575

Closed
definitelycarter opened this issue Aug 2, 2016 · 1 comment
Closed

runtime: Unable to build go project on macOS 10.12 beta 4 #16575

definitelycarter opened this issue Aug 2, 2016 · 1 comment

Comments

@definitelycarter
Copy link

Please answer these questions before submitting your issue. Thanks!

  1. What version of Go are you using (go version)?
    go version go1.6.3 darwin/amd64
  2. What operating system and processor architecture are you using (go env)?
GOBIN="/Users/adamcarter/Projects/Go/bin"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/adamcarter/Projects/Go"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GO15VENDOREXPERIMENT="1"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fno-common"
CXX="clang++"
CGO_ENABLED="1"
  1. What did you do?
    Try to build a go project go build -o ./api/bin/api ./api/api.go
  2. What did you expect to see?
    A successful build
  3. What did you see instead?
    The following panic
fatal error: unexpected signal during runtime execution
[signal 0xa code=0x2 addr=0x12946dfda82 pc=0xf0eb]

runtime stack:
runtime.throw(0x4971c0, 0x2a)
    /usr/local/go/src/runtime/panic.go:547 +0x90
runtime.sigpanic()
    /usr/local/go/src/runtime/sigpanic_unix.go:12 +0x5a
runtime.unlock(0x982540)
    /usr/local/go/src/runtime/lock_sema.go:107 +0x14b
runtime.(*mheap).alloc_m(0x982540, 0x8, 0x100000000, 0x983f80)
    /usr/local/go/src/runtime/mheap.go:492 +0x314
runtime.(*mheap).alloc.func1()
    /usr/local/go/src/runtime/mheap.go:502 +0x41
runtime.systemstack(0xc820039ee0)
    /usr/local/go/src/runtime/asm_amd64.s:307 +0xab
runtime.(*mheap).alloc(0x982540, 0x8, 0x10100000000, 0x149cc)
    /usr/local/go/src/runtime/mheap.go:503 +0x63
runtime.largeAlloc(0xe968, 0x0, 0x11)
    /usr/local/go/src/runtime/malloc.go:766 +0xb3
runtime.mallocgc.func3()
    /usr/local/go/src/runtime/malloc.go:664 +0x33
runtime.systemstack(0xc820001b40)
    /usr/local/go/src/runtime/asm_amd64.s:291 +0x79
runtime.mstart()
    /usr/local/go/src/runtime/proc.go:1051

goroutine 1 [running]:
runtime.systemstack_switch()
    /usr/local/go/src/runtime/asm_amd64.s:245 fp=0xc820cbb0b8 sp=0xc820cbb0b0
runtime.mallocgc(0xe968, 0x428dc0, 0xc800000000, 0x6a774)
    /usr/local/go/src/runtime/malloc.go:665 +0x9eb fp=0xc820cbb190 sp=0xc820cbb0b8
runtime.newarray(0x428dc0, 0x2a7, 0xc820d80540)
    /usr/local/go/src/runtime/malloc.go:798 +0xc9 fp=0xc820cbb1d0 sp=0xc820cbb190
runtime.makeslice(0x3b02a0, 0x2a7, 0x2a7, 0x0, 0x0, 0x0)
    /usr/local/go/src/runtime/slice.go:32 +0x165 fp=0xc820cbb220 sp=0xc820cbb1d0
cmd/compile/internal/gc.Flowstart(0xc820d5a360, 0x4c4758, 0x20)
    /usr/local/go/src/cmd/compile/internal/gc/popt.go:271 +0x298 fp=0xc820cbb330 sp=0xc820cbb220
cmd/compile/internal/gc.regopt(0xc820d5a360)
    /usr/local/go/src/cmd/compile/internal/gc/reg.go:1064 +0x3d0 fp=0xc820cbb7e8 sp=0xc820cbb330
cmd/compile/internal/gc.compile(0xc820203b90)
    /usr/local/go/src/cmd/compile/internal/gc/pgen.go:521 +0xe6d fp=0xc820cbba58 sp=0xc820cbb7e8
cmd/compile/internal/gc.funccompile(0xc820203b90)
    /usr/local/go/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 fp=0xc820cbbad0 sp=0xc820cbba58
cmd/compile/internal/gc.Main()
    /usr/local/go/src/cmd/compile/internal/gc/lex.go:472 +0x2116 fp=0xc820cbbdf0 sp=0xc820cbbad0
cmd/compile/internal/amd64.Main()
    /usr/local/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d fp=0xc820cbbe58 sp=0xc820cbbdf0
main.main()
    /usr/local/go/src/cmd/compile/main.go:32 +0x395 fp=0xc820cbbf30 sp=0xc820cbbe58
runtime.main()
    /usr/local/go/src/runtime/proc.go:188 +0x2b0 fp=0xc820cbbf80 sp=0xc820cbbf30
runtime.goexit()
    /usr/local/go/src/runtime/asm_amd64.s:1998 +0x1 fp=0xc820cbbf88 sp=0xc820cbbf80
@bradfitz
Copy link
Contributor

bradfitz commented Aug 2, 2016

Dup of #16570

@bradfitz bradfitz closed this as completed Aug 2, 2016
@mikioh mikioh changed the title Unable to build go project on macOS 10.12 beta 4 runtime: Unable to build go project on macOS 10.12 beta 4 Oct 13, 2016
@golang golang locked and limited conversation to collaborators Oct 13, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants