summaryrefslogtreecommitdiff
path: root/src/cmd/dist
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-04-14 10:58:49 -0400
committerRuss Cox <rsc@golang.org>2014-04-14 10:58:49 -0400
commit4fe30da9cc61d4e614eb1d00a2bb7277302e7d03 (patch)
treec909ac021e89dfa76c89a27987b38e7cca9de897 /src/cmd/dist
parenteefdadea3fd0782d3146598ac3e332347f4cf311 (diff)
downloadgo-4fe30da9cc61d4e614eb1d00a2bb7277302e7d03.tar.gz
cmd/objdump: rewrite in Go
Update cmd/dist not to build the C version. Update cmd/go to install the Go version to the tool directory. Update issue 7452 This is the basic logic needed for objdump, and it works well enough to support the pprof list and weblist commands. A real disassembler needs to be added in order to support the pprof disasm command and the per-line assembly displays in weblist. That's still to come. Probably objdump will move to go.tools when the disassembler is added, but it can stay here for now. LGTM=minux.ma R=golang-codereviews, minux.ma CC=golang-codereviews, iant, r https://codereview.appspot.com/87580043
Diffstat (limited to 'src/cmd/dist')
-rw-r--r--src/cmd/dist/build.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cmd/dist/build.c b/src/cmd/dist/build.c
index be05b82f1..3ef9f6592 100644
--- a/src/cmd/dist/build.c
+++ b/src/cmd/dist/build.c
@@ -1332,7 +1332,6 @@ static char *buildorder[] = {
"misc/pprof",
- "cmd/objdump",
"cmd/prof",
"cmd/cc", // must be before c
@@ -1409,7 +1408,6 @@ static char *cleantab[] = {
"cmd/cc",
"cmd/gc",
"cmd/go",
- "cmd/objdump",
"cmd/prof",
"lib9",
"libbio",