go - how to make second development based on levigo -


i made second development on levigo, when finished , try install on system following command:

go install github.com/andremouche/levigo/ 

it reports following error:

# github.com/andremouche/levigo /home/fun/software/go/go/pkg/tool/linux_amd64/6c: unknown flag -fvw 

does know how fix it?

your go command differs go tool chain. check if right version of go tool in path of shell or try reinstalling go.

the go tool calls tools compiler (e.g. 6g) , linker. if go tool version not correspond version of these tools, said tools may called parameters don't yet know or don't know anymore.

check version using these commands:

$ go version $ go tool 6g -v 

they both should report same version string.

see this , this post related problems.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -