[go-nuts] Only build go binary from source

2017-03-19 Thread gruszczy
Hi gophers, I am tinkering with some runtime code and I would like to build only the go binary to the test it on a small program I wrote. I don't see any script in the source that would allow that, all of these also try to compile the standard library. I would like to avoid that, because it's e

Re: [go-nuts] Only build go binary from source

2017-03-20 Thread Ian Lance Taylor
On Sun, Mar 19, 2017 at 3:29 PM, wrote: > > I am tinkering with some runtime code and I would like to build only the go > binary to the test it on a small program I wrote. I don't see any script in > the source that would allow that, all of these also try to compile the > standard library. I woul

Re: [go-nuts] Only build go binary from source

2017-03-26 Thread Filip GruszczyƄski
Hi Ian, Thanks for responding! What I am looking for is to build only steps: # Building Go bootstrap tool. # Building Go toolchain using # Building go_bootstrap for host And then stop and be able to use the freshly produced go binary. No packages are going to be build, as I only n

Re: [go-nuts] Only build go binary from source

2017-03-26 Thread peterGo
Filip, ~ $ cd go/src ~/go/src $ ./make.bash --no-clean # Building Go bootstrap tool. cmd/dist # Building Go toolchain using /home/peter/go1.4. bootstrap/cmd/internal/dwarf bootstrap/cmd/internal/src bootstrap/cmd/internal/sys bootstrap/cmd/asm/internal/flags bootstrap/cmd/internal/bio boo

Re: [go-nuts] Only build go binary from source

2017-03-26 Thread Filip GruszczyƄski
Thanks a lot, Peter! 2017-03-26 11:07 GMT-07:00 peterGo : > Filip, > > ~ $ cd go/src > ~/go/src $ ./make.bash --no-clean > # Building Go bootstrap tool. > cmd/dist > > # Building Go toolchain using /home/peter/go1.4. > bootstrap/cmd/internal/dwarf > bootstrap/cmd/internal/src > bootstrap/