1
0
mirror of https://github.com/golang/go synced 2024-11-22 05:44:41 -07:00

fix build

TBR=gri
OCL=34264
CL=34264
This commit is contained in:
Russ Cox 2009-09-02 13:13:40 -07:00
parent 115c62de8d
commit a03764aa50
3 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# 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

View File

@ -9,9 +9,19 @@
// 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

View File

@ -4,6 +4,8 @@
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";