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:
Simon Butcher 2018-03-26 22:25:12 +01:00 committed by Minos Galanakis
parent 33425de128
commit 1c0c5d2a62

View file

@ -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