Skip to content

Commit

Permalink
update libuv to fix windows spawn support
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash committed Nov 24, 2012
1 parent dd28c29 commit 75cb6c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deps/libuv
Submodule libuv updated from a21028 to 070953
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FLAGS = \
-I$(shell $(LLVM_CONFIG) --includedir) \
-I$(JULIAHOME)/deps/libuv/include -I$(JULIAHOME)/usr/include

LIBS = $(shell $(LLVM_CONFIG) --libfiles) $(WHOLE_ARCHIVE) $(WHOLE_ARCHIVE) $(JULIAHOME)/src/support/libsupport.a -L$(USR)/lib -luv $(OSLIBS) -lpthread $(shell $(LLVM_CONFIG) --ldflags)
LIBS = $(shell $(LLVM_CONFIG) --libfiles) $(WHOLE_ARCHIVE) $(WHOLE_ARCHIVE) $(JULIAHOME)/src/support/libsupport.a -L$(USRLIB) $(USRLIB)/libuv.a $(OSLIBS) -lpthread $(shell $(LLVM_CONFIG) --ldflags)

ifneq ($(MAKECMDGOALS),debug)
TARGET =
Expand Down
2 changes: 1 addition & 1 deletion ui/webserver/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include $(JULIAHOME)/Make.inc
override CFLAGS += $(JCFLAGS)
override CXXFLAGS += $(JCXXFLAGS)

LIBS = -lpthread -L${USRLIB} -luv
LIBS = -lpthread ${USRLIB}/libuv.a
ifeq ($(OS), Linux)
LIBS += -lrt
endif
Expand Down

0 comments on commit 75cb6c3

Please sign in to comment.