aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/Makefile
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-12-05 15:24:18 -0800
committerRuss Cox <rsc@golang.org>2008-12-05 15:24:18 -0800
commit3f8aa662e9710f821411dc9c6f0f0be8c756e40d (patch)
treeae9d666b764532276b207e1125d30252716ab014 /src/runtime/Makefile
parent73120ee81d2f4755bcbf03ea6b4c127afc141047 (diff)
downloadgo-3f8aa662e9710f821411dc9c6f0f0be8c756e40d.tar.gz
go-3f8aa662e9710f821411dc9c6f0f0be8c756e40d.zip
add support for ref counts to memory allocator.
mark and sweep, stop the world garbage collector (intermediate step in the way to ref counting). can run pretty with an explicit gc after each file. R=r DELTA=502 (346 added, 143 deleted, 13 changed) OCL=20630 CL=20635
Diffstat (limited to 'src/runtime/Makefile')
-rw-r--r--src/runtime/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/Makefile b/src/runtime/Makefile
index 000c889030..2cb5cfa0ae 100644
--- a/src/runtime/Makefile
+++ b/src/runtime/Makefile
@@ -22,11 +22,11 @@ LIBOFILES=\
chan.$O\
iface.$O\
array.$O\
+ mem.$O\
print.$O\
rune.$O\
proc.$O\
sema.$O\
- stack.$O\
string.$O\
symtab.$O\
sys_file.$O\