mirror of
https://github.com/golang/go
synced 2024-11-21 21:04:41 -07:00
Make.ccmd: another build fix.
It's sad to think there are environments where compiling against a library isn't enough information for the the linker to decide that you need that library. TBR=jdpoirier R=jdpoirier CC=golang-dev https://golang.org/cl/4646047
This commit is contained in:
parent
3890ce0ed5
commit
f22f40532e
@ -9,7 +9,7 @@ TARG:=$(TARG).exe
|
||||
endif
|
||||
|
||||
$(TARG): $(OFILES) $(LIB)
|
||||
$(HOST_LD) -o $(TARG) -L"$(GOROOT)"/lib $(OFILES) $(LIB) -lmach -lbio -l9 $(HOST_LDFLAGS)
|
||||
$(HOST_LD) -o $(TARG) -L"$(GOROOT)"/lib $(OFILES) $(LIB) -lmach -lbio -l9 -lm $(HOST_LDFLAGS)
|
||||
|
||||
$(OFILES): $(HFILES)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user