From 2da85ea8056601764913bf7513c6a26d2dbbfbe1 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Thu, 5 Dec 2019 01:10:44 +0200 Subject: [PATCH] Fix openssl instructions --- Compiling-with-MSVC-2017-(static-linkage).mediawiki | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Compiling-with-MSVC-2017-(static-linkage).mediawiki b/Compiling-with-MSVC-2017-(static-linkage).mediawiki index 2e32d2a..734c87d 100644 --- a/Compiling-with-MSVC-2017-(static-linkage).mediawiki +++ b/Compiling-with-MSVC-2017-(static-linkage).mediawiki @@ -71,7 +71,11 @@ This page describes how to compile 32-bit and 64-bit qBittorrent using MSVC 2017 * Then issue the following: nmake nmake test +* Because we substituted the LDFLAGS variable and removed the "/debug" switch, *.pdb files weren't generated. The next command expects to find one at "apps/openssl.pdb". So we just create a dummy file with that name. The easiest way is to make a copy of openssl.exe (exists in the same subfolder) and rename it to openssl.pdb. +* Issue command: nmake install_sw +* Delete the dummy openssl.pdb from where it was copied to (adjust for 64-bit): + G:\QBITTORRENT\install_msvc32\base\bin\openssl.pdb === Compiling Boost === * Extract the Boost sources in the working dir.