summaryrefslogtreecommitdiff
path: root/src/cmd/6l/Makefile
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-12-08 13:56:43 -0500
committerRuss Cox <rsc@golang.org>2010-12-08 13:56:43 -0500
commitb2f8a8b3a16a9e60eb744a644e446a5f10d361a7 (patch)
tree1ca66050a07958a71049ed6ba928b8bcf80caef6 /src/cmd/6l/Makefile
parent4a12db9239df557fd45c2079d83f7439f0294ed4 (diff)
downloadgo-b2f8a8b3a16a9e60eb744a644e446a5f10d361a7.tar.gz
6l, 8l: support for linking ELF and Mach-O .o files
More support for references to dynamic symbols, including full GOT and PLT for ELF objects. For Mach-O everything ends up in the GOT: dealing with the real lazy PLT is too hard for now so we punt. R=iant, iant2 CC=golang-dev http://codereview.appspot.com/3491042
Diffstat (limited to 'src/cmd/6l/Makefile')
-rw-r--r--src/cmd/6l/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd/6l/Makefile b/src/cmd/6l/Makefile
index 94e520a93..fba1b42ae 100644
--- a/src/cmd/6l/Makefile
+++ b/src/cmd/6l/Makefile
@@ -14,6 +14,8 @@ OFILES=\
elf.$O\
enam.$O\
go.$O\
+ ldelf.$O\
+ ldmacho.$O\
lib.$O\
list.$O\
macho.$O\