]> Cypherpunks repositories - gostls13.git/commit
cmd/ld: support for linking with host linker
authorRuss Cox <rsc@golang.org>
Thu, 31 Jan 2013 22:11:32 +0000 (14:11 -0800)
committerRuss Cox <rsc@golang.org>
Thu, 31 Jan 2013 22:11:32 +0000 (14:11 -0800)
commit0cb0f6d0902aff683de5535565e923c45f8d5a8a
tree03e93da3601b89db9d4de1e6b7cdcb706e04d9e4
parent739aa6b1ba6f643a37370d569c5f67827f5c370c
cmd/ld: support for linking with host linker

A step toward a fix for issue 4069.

To allow linking with arbitrary host object files, add a linker mode
that can generate a host object file instead of an executable.
Then the host linker can be invoked to generate the final executable.

This CL adds a new -hostobj flag that instructs the linker to write
a host object file instead of an executable.

That is, this works:

        go tool 6g x.go
        go tool 6l -hostobj -o x.o x.6
        ld -e _rt0_amd64_linux x.o
        ./a.out

as does:

        go tool 8g x.go
        go tool 8l -hostld ignored -o x.o x.8
        ld -m elf_i386 -e _rt0_386_linux x.o
        ./a.out

Because 5l was never updated to use the standard relocation scheme,
it will take more work to get this working on ARM.

This is a checkpoint of the basic functionality. It does not work
with cgo yet, and cgo is the main reason for the change.
The command-line interface will likely change too.
The gc linker has other information that needs to be returned to
the caller for use when invoking the host linker besides the single
object file.

R=iant, iant
CC=golang-dev
https://golang.org/cl/7060044
src/cmd/5l/asm.c
src/cmd/6l/asm.c
src/cmd/6l/obj.c
src/cmd/8l/asm.c
src/cmd/8l/obj.c
src/cmd/ld/data.c
src/cmd/ld/elf.c
src/cmd/ld/elf.h
src/cmd/ld/lib.c
src/cmd/ld/lib.h
src/cmd/ld/symtab.c