Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Add missing libs required to compile under MinGW
Browse files Browse the repository at this point in the history
GetProcessMemoryInfo is in psapi and
GetAdaptersAddresses is in iphlpapi
  • Loading branch information
luislavena committed Mar 2, 2012
1 parent b55801f commit c344277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-mingw.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ WIN_OBJS=$(WIN_SRCS:.c=.o)

RUNNER_CFLAGS=$(CFLAGS) -D_GNU_SOURCE # Need _GNU_SOURCE for strdup?
RUNNER_LINKFLAGS=$(LINKFLAGS)
RUNNER_LIBS=-lws2_32
RUNNER_LIBS=-lws2_32 -lpsapi -liphlpapi
RUNNER_SRC=test/runner-win.c

uv.a: $(WIN_OBJS) src/uv-common.o $(CARES_OBJS)
Expand Down

0 comments on commit c344277

Please sign in to comment.