Commit 9ff0e628 authored by Rob Pike's avatar Rob Pike

runtime needs runtime.c

6l needs to know that there is no rt_amd64.6

SVN=124766
parent 41abdad5
......@@ -363,10 +363,6 @@ main(int argc, char *argv[])
objfile(*argv++);
if(!debug['l']) {
loadlib();
a = mal(strlen(goroot)+strlen(goarch)+20);
sprint(a, "%s/lib/rt_%s.6", goroot, goarch);
objfile(a);
a = mal(strlen(goroot)+strlen(goarch)+strlen(goos)+20);
sprint(a, "%s/lib/lib_%s_%s.a", goroot, goarch, goos);
objfile(a);
......
......@@ -15,6 +15,7 @@ RT0OFILES=\
LIBOFILES=\
rt1_$(GOARCH)_$(GOOS).$O\
rt2_$(GOARCH).$O\
runtime.$O\
OFILES=$(RT0OFILES) $(LIBOFILES)
HFILES=
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment