Commit a03764aa authored by Russ Cox's avatar Russ Cox

fix build

TBR=gri
OCL=34264
CL=34264
parent 115c62de
# 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
...@@ -9,9 +9,19 @@ ...@@ -9,9 +9,19 @@
// memory and registers. // memory and registers.
package proc 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 ( import (
"container/vector";
"fmt";
"io";
"os"; "os";
"runtime";
"strconv"; "strconv";
"strings";
"sync";
"syscall";
) )
type Word uint64 type Word uint64
......
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
package proc package proc
// TODO(rsc): Imports here after to be in proc.go too in order
// for deps.bash to get the right answer.
import ( import (
"container/vector"; "container/vector";
"fmt"; "fmt";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment