Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.79 KB | None | 0 0
  1. tal@tal-Ubuntu-VirtualBox:~$ go env
  2. GOARCH="amd64"
  3. GOBIN=""
  4. GOCACHE="/home/tal/.cache/go-build"
  5. GOEXE=""
  6. GOHOSTARCH="amd64"
  7. GOHOSTOS="linux"
  8. GOOS="linux"
  9. GOPATH="/home/tal/go"
  10. GORACE=""
  11. GOROOT="/usr/local/go"
  12. GOTMPDIR=""
  13. GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
  14. GCCGO="gccgo"
  15. CC="gcc"
  16. CXX="g++"
  17. CGO_ENABLED="1"
  18. CGO_CFLAGS="-g -O2"
  19. CGO_CPPFLAGS=""
  20. CGO_CXXFLAGS="-g -O2"
  21. CGO_FFLAGS="-g -O2"
  22. CGO_LDFLAGS="-g -O2"
  23. PKG_CONFIG="pkg-config"
  24. GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build779090332=/tmp/go-build -gno-record-gcc-switches"
  25. tal@tal-Ubuntu-VirtualBox:~$ go get github.com/loomnetwork/go-loom
  26. tal@tal-Ubuntu-VirtualBox:~$ cd go/src/github.com/loomnetwork/go-loom/
  27. tal@tal-Ubuntu-VirtualBox:~/go/src/github.com/loomnetwork/go-loom$ make deps
  28. go get \
  29.     golang.org/x/crypto/ripemd160 \
  30.     golang.org/x/crypto/sha3 \
  31.     github.com/gogo/protobuf/jsonpb \
  32.     github.com/gogo/protobuf/proto \
  33.     google.golang.org/grpc \
  34.     github.com/spf13/cobra \
  35.     github.com/hashicorp/go-plugin \
  36.     github.com/stretchr/testify/assert \
  37.     github.com/go-kit/kit/log
  38. dep ensure -vendor-only
  39. make: dep: Command not found
  40. Makefile:65: recipe for target 'deps' failed
  41. make: *** [deps] Error 127
  42. tal@tal-Ubuntu-VirtualBox:~/go/src/github.com/loomnetwork/go-loom$ make example-cli
  43. go build github.com/gogo/protobuf/protoc-gen-gogo
  44. protoc --plugin=./protoc-gen-gogo -Ivendor -I/src -I/usr/local/include --gogo_out=plugins=grpc:/src github.com/loomnetwork/go-loom/types/types.proto
  45. vendor: warning: directory does not exist.
  46. /src: warning: directory does not exist.
  47. github.com/loomnetwork/go-loom/types/types.proto: No such file or directory
  48. Makefile:43: recipe for target 'types/types.pb.go' failed
  49. make: *** [types/types.pb.go] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement