diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-10-15 13:25:39 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2021-10-15 13:25:39 +0200 |
| commit | acee39e5c5be203e6ebd9efb259a66d9a89e9267 (patch) | |
| tree | 88c1ecd4037512a192424c51f32502e7e5a495af | |
| parent | 1ed123828c97d9f7e031a9caee02e340295ef21e (diff) | |
| download | rust-acee39e5c5be203e6ebd9efb259a66d9a89e9267.tar.gz rust-acee39e5c5be203e6ebd9efb259a66d9a89e9267.zip | |
Add missing bcrypt.lib to make-fulldeps Makefile.
| -rw-r--r-- | src/test/run-make-fulldeps/tools.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-make-fulldeps/tools.mk b/src/test/run-make-fulldeps/tools.mk index a1a076dd747..3934c4725f4 100644 --- a/src/test/run-make-fulldeps/tools.mk +++ b/src/test/run-make-fulldeps/tools.mk @@ -101,9 +101,9 @@ endif # Extra flags needed to compile a working executable with the standard library ifdef IS_WINDOWS ifdef IS_MSVC - EXTRACFLAGS := ws2_32.lib userenv.lib advapi32.lib + EXTRACFLAGS := ws2_32.lib userenv.lib advapi32.lib bcrypt.lib else - EXTRACFLAGS := -lws2_32 -luserenv + EXTRACFLAGS := -lws2_32 -luserenv -lbcrypt EXTRACXXFLAGS := -lstdc++ # So this is a bit hacky: we can't use the DLL version of libstdc++ because # it pulls in the DLL version of libgcc, which means that we end up with 2 |
