]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go/build: Add magic data for Plan 9 binaries.
authorAkshat Kumar <seed@mail.nanosouffle.net>
Mon, 1 Oct 2012 19:04:52 +0000 (15:04 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 1 Oct 2012 19:04:52 +0000 (15:04 -0400)
This change allows the Go build and install tools to
recognize Plan 9 i386 and amd64 binaries.

R=rsc, r, rminnich
CC=golang-dev
https://golang.org/cl/6575064

src/cmd/go/build.go

index af5d87843f64c12775362f8acb6ea9aee07115ed..37ad3b0a71b9e29ac7d005a0680422b72fc10783 100644 (file)
@@ -946,6 +946,8 @@ var objectMagic = [][]byte{
        {0xCE, 0xFA, 0xED, 0xFE},                         // Mach-O little-endian 32-bit
        {0xCF, 0xFA, 0xED, 0xFE},                         // Mach-O little-endian 64-bit
        {0x4d, 0x5a, 0x90, 0x00, 0x03, 0x00, 0x04, 0x00}, // PE (Windows) as generated by 6l/8l
+       {0x00, 0x00, 0x01, 0xEB},                         // Plan 9 i386
+       {0x00, 0x00, 0x8a, 0x97},                         // Plan 9 amd64
 }
 
 func isObject(s string) bool {