TBR=gri
OCL=34264
CL=34264
--- /dev/null
+# Copyright 2009 The Go Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style
+# license that can be found in the LICENSE file.
+
+include $(GOROOT)/src/Make.$(GOARCH)
+
+TARG=debug/gosym
+GOFILES=\
+ pclntab.go\
+ symtab.go\
+
+include $(GOROOT)/src/Make.pkg
+
// memory and registers.
package proc
+// TODO(rsc): Have to import everything that proc_linux.go
+// and proc_darwin.go do, because deps.bash only looks at
+// this file.
import (
+ "container/vector";
+ "fmt";
+ "io";
"os";
+ "runtime";
"strconv";
+ "strings";
+ "sync";
+ "syscall";
)
type Word uint64
package proc
+// TODO(rsc): Imports here after to be in proc.go too in order
+// for deps.bash to get the right answer.
import (
"container/vector";
"fmt";