Hi, Im a go newbie and I wanted to get a good grasp of the go tooling.
I wanted to compile the hello world program without the use of go build but a combination of go tool compile + go tool link
I find very few information online about this so I was hoping to get some help here.
I successfully compiled hello.go after running go build -o fmt.a fmt in GOROOT/src and moving the .a into GOROOT/pkg/GOOS_GOARCH/
Then when trying to link I was met with missing .o errors so I repeated the process for every module inside GOROOT/src until the error was regarding unicode/utf8.o
I tried doing the same step for the utf8 module and put it in a unicode subdirectory but not only did the error remain but I also thought this was not the right approach if I had to manually build every module and submodule.
Has anyone successfully done this before ?
