aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/link/testdata/macho.amd64.helloro
AgeCommit message (Collapse)Author
2015-05-21cmd/link: move to cmd/newlinkRuss Cox
In preparation for making the current linker cmd/link. If cmd/newlink is ever completed, it can be moved back. See golang-dev thread titled "go tool compile, etc" for background. Change-Id: I4029580f470038240c5181a37ea4202ba971f9ef Reviewed-on: https://go-review.googlesource.com/10286 Reviewed-by: Rob Pike <r@golang.org>
2014-01-13cmd/link: replace golden binary files with hex dumpsRuss Cox
The hex dumps will diff better, and I hope they will avoid a repeat of http://bugs.debian.org/716853. The CL will probably show the testdata diffs as "binary", but in fact the binary versions are being replaced by textual hex dumps (output of hexdump -C). R=iant CC=golang-codereviews https://golang.org/cl/51000044
2014-01-09cmd/link: Mach-O (OS X) file formatterRuss Cox
See CL 48870044 for basic structure. R=iant CC=golang-codereviews https://golang.org/cl/48910043