ondrajz / go-callvis

Visualize call graph of a Go program using Graphviz
https://ofabry.github.io/go-callvis
MIT License
5.82k stars 402 forks source link

Can go-callvis be used on windows platform? #141

Open zgq25302111 opened 1 year ago

zgq25302111 commented 1 year ago

Can go-callvis be used on windows platform? How to use go-callvis? windows don't support "make install".

my email is zgq25302111@126.com

LasseJacobs commented 1 year ago

@zgq25302111 the make install target refers to: go install -tags $(GO_BUILD_TAGS) -ldflags "$(GO_LDFLAGS)" $(GO_BUILD_ARGS). This is a normal Go command and should work on windows (I don't have a windows machine to verify however). The values in $() refer to variables in the makefile. You will have to manually replace them with the values you need. If you don't know what to use just remove them.