Is it possible to use custom linker script (.ldscript) as the Go executable generated from go build
command is not supported on my target environment as it expects the sections to be in different order ?
I checked the go tool link
-extld option, but this expects the linker path and not script if I'm correct.
Answering my own question for future reference.
It is possible to link custom linker scripts using
go build -ldflags="-linkmode=external -extldflags=-T<linker-script>