mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Fix for building programs with mingw
mingw build files were missing the dependency on the bcrypt library Signed-off-by: Simon Butcher <simon.butcher@arm.com>
This commit is contained in:
parent
33425de128
commit
1c0c5d2a62
|
|
@ -45,7 +45,7 @@ endif
|
||||||
ifdef WINDOWS_BUILD
|
ifdef WINDOWS_BUILD
|
||||||
DLEXT=dll
|
DLEXT=dll
|
||||||
EXEXT=.exe
|
EXEXT=.exe
|
||||||
LOCAL_LDFLAGS += -lws2_32
|
LOCAL_LDFLAGS += -lws2_32 -lbcrypt
|
||||||
ifdef SHARED
|
ifdef SHARED
|
||||||
SHARED_SUFFIX=.$(DLEXT)
|
SHARED_SUFFIX=.$(DLEXT)
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue