Re: [go-nuts] Binary only package stub file

2019-01-29 Thread Ian Lance Taylor
On Mon, Jan 28, 2019 at 11:53 PM Aakash das wrote: > > +golang-nuts. > > On Tue, Jan 29, 2019 at 1:20 PM Aakash das wrote: >> >> Thanks for the reply, Ian. I have an additional question. Given a Go binary >> package file in '.a' format, would it be possible to extract dependencies >> for the sa

Re: [go-nuts] Binary only package stub file

2019-01-28 Thread Aakash das
+golang-nuts. On Tue, Jan 29, 2019 at 1:20 PM Aakash das wrote: > Thanks for the reply, Ian. I have an additional question. Given a Go > binary package file in '.a' format, would it be possible to extract > dependencies for the said binary package using some tool? My end goal is > to automate t

Re: [go-nuts] Binary only package stub file

2019-01-28 Thread Ian Lance Taylor
On Mon, Jan 28, 2019 at 1:56 PM Aakash das wrote: > > Hello everyone, > The requirements for binary only source file has changed in Go 1.10. Could > you please guide me to the steps that are needed for making binary only > package work with Go 1.10. I couldn't find any example on generating a st

[go-nuts] Binary only package stub file

2019-01-28 Thread Aakash das
Hello everyone, The requirements for binary only source file has changed in Go 1.10. Could you please guide me to the steps that are needed for making binary only package work with Go 1.10. I couldn't find any example on generating a stub source '.go' file with dependencies explicitly specified. Th