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:
parent
115c62de8d
commit
a03764aa50
13
src/pkg/debug/gosym/Makefile
Normal file
13
src/pkg/debug/gosym/Makefile
Normal 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
|
||||
|
@ -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
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user