]> Cypherpunks repositories - gostls13.git/commitdiff
Make.ccmd: fix build - libraries in wrong order.
authorRob Pike <r@golang.org>
Sun, 19 Jun 2011 04:56:25 +0000 (14:56 +1000)
committerRob Pike <r@golang.org>
Sun, 19 Jun 2011 04:56:25 +0000 (14:56 +1000)
TBR=jdpoirier

R=jdpoirier
CC=golang-dev
https://golang.org/cl/4648045

src/Make.ccmd

index 78258c238373dc5d0b2907c756bd0547bdad514d..0caca048532595623edf006e58c6b92a4b2832f8 100644 (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)