what's this project status? Is it possible to support binary combine build?
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.
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