Commit 3890ce0e authored by Rob Pike's avatar Rob Pike

Make.ccmd: fix build - libraries in wrong order.

TBR=jdpoirier

R=jdpoirier
CC=golang-dev
https://golang.org/cl/4648045
parent cbb2d8e2
......@@ -9,7 +9,7 @@ TARG:=$(TARG).exe
endif
$(TARG): $(OFILES) $(LIB)
$(HOST_LD) -o $(TARG) -L"$(GOROOT)"/lib $(OFILES) $(LIB) -lbio -l9 -lmach $(HOST_LDFLAGS)
$(HOST_LD) -o $(TARG) -L"$(GOROOT)"/lib $(OFILES) $(LIB) -lmach -lbio -l9 $(HOST_LDFLAGS)
$(OFILES): $(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