We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the gocyto bash file in my gocyto directory. From that directory, I was using the following command:
./gocyto --out test.html directory-of-my-package
I got the error "failed packages load: could not determine GOARCH and Go compiler". When I checked for go env, I found that I have the following:
GOARCH="amd64" GCCGO="gccgo"
The text was updated successfully, but these errors were encountered:
+1 to this
Sorry, something went wrong.
For macos, I had to build and install myself:
git clone git clone https://github.com/protolambda/gocyto.git /tmp/gocyto pushd /tmp/gocyto go build && go install popd
Now I get panic: pointer analysis failed no main/test packages to analyze (check $GOROOT/$GOPATH), so checking out #7
panic: pointer analysis failed no main/test packages to analyze (check $GOROOT/$GOPATH)
i also meet this error.
No branches or pull requests
I have the gocyto bash file in my gocyto directory. From that directory, I was using the following command:
./gocyto --out test.html directory-of-my-package
I got the error "failed packages load: could not determine GOARCH and Go compiler". When I checked for go env, I found that I have the following:
GOARCH="amd64"
GCCGO="gccgo"
The text was updated successfully, but these errors were encountered: