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
1 changed files with 1 additions and 1 deletions
|
@ -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