Using custom linker script with Go build

842 Views Asked by At

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.

2

There are 2 best solutions below

0
On

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>

1
On

Is it possible to use custom linker script (.ldscript) [?]

No.