Skip to content

Commit acee39e

Browse files
committed
Add missing bcrypt.lib to make-fulldeps Makefile.
1 parent 1ed1238 commit acee39e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/run-make-fulldeps/tools.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ endif
101101
# Extra flags needed to compile a working executable with the standard library
102102
ifdef IS_WINDOWS
103103
ifdef IS_MSVC
104-
EXTRACFLAGS := ws2_32.lib userenv.lib advapi32.lib
104+
EXTRACFLAGS := ws2_32.lib userenv.lib advapi32.lib bcrypt.lib
105105
else
106-
EXTRACFLAGS := -lws2_32 -luserenv
106+
EXTRACFLAGS := -lws2_32 -luserenv -lbcrypt
107107
EXTRACXXFLAGS := -lstdc++
108108
# So this is a bit hacky: we can't use the DLL version of libstdc++ because
109109
# it pulls in the DLL version of libgcc, which means that we end up with 2

0 commit comments

Comments
 (0)