]> Cypherpunks repositories - gostls13.git/commit
cmd/link: intial skeleton of linker written in Go
authorRuss Cox <rsc@golang.org>
Fri, 10 Jan 2014 00:29:10 +0000 (19:29 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 10 Jan 2014 00:29:10 +0000 (19:29 -0500)
commit146897b031c00021fe78c0a9d76861cf5e27c5ec
treeda6f23563dd9243b60af2aa7fe86b70afb3bfa64
parentd6bce32a3607222075734bf4363ca3fea02ea1e5
cmd/link: intial skeleton of linker written in Go

R=iant
CC=golang-codereviews
https://golang.org/cl/48870044
16 files changed:
src/cmd/go/pkg.go
src/cmd/link/dead.go [new file with mode: 0644]
src/cmd/link/debug.go [new file with mode: 0644]
src/cmd/link/layout.go [new file with mode: 0644]
src/cmd/link/link_test.go [new file with mode: 0644]
src/cmd/link/load.go [new file with mode: 0644]
src/cmd/link/main.go [new file with mode: 0644]
src/cmd/link/prog.go [new file with mode: 0644]
src/cmd/link/prog_test.go [new file with mode: 0644]
src/cmd/link/runtime.go [new file with mode: 0644]
src/cmd/link/scan.go [new file with mode: 0644]
src/cmd/link/testdata/hello.6 [new file with mode: 0644]
src/cmd/link/testdata/hello.s [new file with mode: 0644]
src/cmd/link/testdata/link.hello.darwin.amd64 [new file with mode: 0755]
src/cmd/link/util.go [new file with mode: 0644]
src/cmd/link/write.go [new file with mode: 0644]