goweave icon indicating copy to clipboard operation
goweave copied to clipboard

what's this project status? Is it possible to support binary combine build?

Open bhpike65 opened this issue 9 years ago • 1 comments

it's been a long time not be updated.

how can i add a support of binary aspect? eg.
we have a lot of golang project with souce code, and dont want modify it. and I want to compile something like goweave into an object file.(means goweave closed-souce) then golang project combine-build with this object file. is this possible to implement?

any suggestions will be appreciated.

bhpike65 avatar Feb 08 '17 04:02 bhpike65

by default goweave does not modify the source code in your VCS - if this is all you need you are g2g

it temporarily copies the source over to a tmp directory and compiles, this behavior can be toggled however

if I understand the question you are wanting to run goweave on a plugin - that support would need to be implemented but afaik you should prob. be able to do this by simply adjusting a flag -- https://github.com/deferpanic/goweave/blob/master/weave/build.go#L85 - idk - look into and lmk how it goes

eyberg avatar Feb 11 '17 18:02 eyberg