Commit c72fb374 authored by Russ Cox's avatar Russ Cox

prof: install gopprof too

This is a modified version of the open source pprof
from code.google.com/p/google-perftools.
That version is likely to catch up to this one,
but it's still useful to ship our own copy since
we only need the one script from that project,
not all the C++ libraries.

R=r
CC=golang-dev
https://golang.org/cl/783041
parent 4e28cfe9
......@@ -22,7 +22,7 @@ $(TARG): $(OFILES)
clean:
rm -f *.$O $(TARG)
install: install-$(shell uname | tr A-Z a-z)
install: install-$(shell uname | tr A-Z a-z) install-pprof
install-linux: install-default
install-freebsd: install-default
......@@ -34,3 +34,6 @@ install-default: $(TARG)
cp $(TARG) "$(GOBIN)"/$(TARG)
$(OFILES): $(HFILES)
install-pprof: gopprof
cp $(TARG) "$(GOBIN)"/gopprof
This source diff could not be displayed because it is too large. You can view the blob instead.
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