Link against dbghelp.lib on Windows to satisfy requirements of chromium/src/base/debug_util_win.cc (SymInitialize etc). This means the build requires Windows XP at runtime (or the user has to install the debugging tools for Windows, but I'm pretty sure we're ok with dropping Windows 2000 support).

This commit is contained in:
Benjamin Smedberg 2009-07-16 11:41:19 -04:00
Родитель 08fc1b6880
Коммит ac4d23a8d0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -105,7 +105,7 @@ ifeq (Linux,$(OS_ARCH))
OS_LIBS += -lrt
endif
ifeq (WINNT,$(OS_ARCH))
OS_LIBS += psapi.lib
OS_LIBS += psapi.lib dbghelp.lib
endif
endif