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

Commit

Permalink
build: 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 authored and bnoordhuis committed Mar 5, 2012
1 parent a93dc7e commit 5110465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-mingw.mk
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 5110465

Please sign in to comment.