summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-09-02 12:03:33 -0700
committerRuss Cox <rsc@golang.org>2009-09-02 12:03:33 -0700
commit3b5e2fd6363940c3c2d6960ba55968909ae16ded (patch)
tree273f87108f01de53ecebe235a3d8040ba5aef425
parent589fc636a2826c045b1b651222157f0e7de874ad (diff)
downloadgolang-3b5e2fd6363940c3c2d6960ba55968909ae16ded.tar.gz
add debug/gosym and debug/proc to build
(was waiting until after release) R=austin DELTA=5 (5 added, 0 deleted, 0 changed) OCL=34222 CL=34261
-rw-r--r--src/pkg/Make.deps2
-rw-r--r--src/pkg/Makefile3
2 files changed, 5 insertions, 0 deletions
diff --git a/src/pkg/Make.deps b/src/pkg/Make.deps
index 02dfd20d3..38e3dd621 100644
--- a/src/pkg/Make.deps
+++ b/src/pkg/Make.deps
@@ -18,6 +18,8 @@ crypto/sha1.install: hash.install os.install
datafmt.install: bytes.install container/vector.install fmt.install go/scanner.install go/token.install io.install os.install reflect.install runtime.install strconv.install strings.install
debug/binary.install: io.install math.install os.install reflect.install
debug/elf.install: debug/binary.install fmt.install io.install os.install strconv.install
+debug/gosym.install: debug/binary.install fmt.install io.install os.install strconv.install strings.install
+debug/proc.install: container/vector.install fmt.install io.install os.install runtime.install strconv.install strings.install sync.install syscall.install
ebnf.install: container/vector.install fmt.install go/scanner.install go/token.install os.install strconv.install strings.install unicode.install utf8.install
exec.install: os.install strings.install
exvar.install: bytes.install fmt.install http.install io.install log.install strconv.install sync.install
diff --git a/src/pkg/Makefile b/src/pkg/Makefile
index 35087daf0..7d0b76e11 100644
--- a/src/pkg/Makefile
+++ b/src/pkg/Makefile
@@ -32,6 +32,8 @@ DIRS=\
datafmt\
debug/binary\
debug/elf\
+ debug/gosym\
+ debug/proc\
ebnf\
exec\
exvar\
@@ -77,6 +79,7 @@ DIRS=\
utf8\
NOTEST=\
+ debug/proc\
go/ast\
go/doc\
go/token\