Merge pull request #22043 from veblush/windbglib

Add dbghelp.lib to windows artifacts
pull/22079/head
Esun Kim 5 years ago committed by GitHub
commit 0b4a9d6ba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Makefile
  2. 2
      setup.py
  3. 2
      templates/Makefile.template

@ -410,7 +410,7 @@ LDFLAGS += -pthread
endif endif
ifeq ($(SYSTEM),MINGW32) ifeq ($(SYSTEM),MINGW32)
LIBS = m pthread ws2_32 LIBS = m pthread ws2_32 dbghelp
LDFLAGS += -pthread LDFLAGS += -pthread
endif endif

@ -241,7 +241,7 @@ if "linux" in sys.platform:
if not "win32" in sys.platform: if not "win32" in sys.platform:
EXTENSION_LIBRARIES += ('m',) EXTENSION_LIBRARIES += ('m',)
if "win32" in sys.platform: if "win32" in sys.platform:
EXTENSION_LIBRARIES += ('advapi32', 'ws2_32',) EXTENSION_LIBRARIES += ('advapi32', 'ws2_32', 'dbghelp',)
if BUILD_WITH_SYSTEM_OPENSSL: if BUILD_WITH_SYSTEM_OPENSSL:
EXTENSION_LIBRARIES += ('ssl', 'crypto',) EXTENSION_LIBRARIES += ('ssl', 'crypto',)
if BUILD_WITH_SYSTEM_ZLIB: if BUILD_WITH_SYSTEM_ZLIB:

@ -274,7 +274,7 @@
endif endif
ifeq ($(SYSTEM),MINGW32) ifeq ($(SYSTEM),MINGW32)
LIBS = m pthread ws2_32 LIBS = m pthread ws2_32 dbghelp
LDFLAGS += -pthread LDFLAGS += -pthread
endif endif

Loading…
Cancel
Save