Makefile.mk: always set CURL_STATICLIB for lib (Windows)

Also fix to export all symbols in Windows debug builds, making
`-debug-dyn` builds work with `-DCURL_STATICLIB` set.

Ref: https://github.com/curl/curl/pull/11914 (same for CMake)

Closes #11924
This commit is contained in:
Viktor Szakats 2023-09-22 18:52:46 +00:00
parent aa9a6a1770
commit 6a85659e7d
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -375,6 +375,9 @@ distclean vclean: clean
ifdef LOCAL
CPPFLAGS += -DBUILDING_LIBCURL
ifdef WIN32
CPPFLAGS += -DCURL_STATICLIB
endif
### Sources and targets
@ -388,7 +391,9 @@ ifdef WIN32
CURL_DLL_SUFFIX ?=
libcurl_dll_LIBRARY := libcurl$(CURL_DLL_SUFFIX).dll
libcurl_dll_a_LIBRARY := libcurl.dll.a
ifeq ($(findstring -trackmem,$(CFG)),)
CURL_LDFLAGS_LIB += $(PROOT)/libcurl.def
endif
ifdef MAP
libcurl_map_LIBRARY := libcurl$(CURL_DLL_SUFFIX).map
CURL_LDFLAGS_LIB += -Wl,-Map,$(libcurl_map_LIBRARY)