1
0
mirror of https://github.com/golang/go synced 2024-11-22 04:34:39 -07:00

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

TBR=jdpoirier

R=jdpoirier
CC=golang-dev
https://golang.org/cl/4648045
This commit is contained in:
Rob Pike 2011-06-19 14:56:25 +10:00
parent cbb2d8e20e
commit 3890ce0ed5

View File

@ -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)