diff options
author | George Hazan <ghazan@miranda.im> | 2020-12-10 16:09:26 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-12-10 16:09:26 +0300 |
commit | 1ff8934248850b81c3aae3acd9bfe91f3d6f4799 (patch) | |
tree | d78f845dadd72763c4f54dfbd227fead233a8016 | |
parent | 1abf24e786cace297b3ec1c83b17bf43f69ddf00 (diff) |
new better scripts of making openssl binaries
-rw-r--r-- | tools/openssl/build_win32.cmd | 9 | ||||
-rw-r--r-- | tools/openssl/build_win64.cmd | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/tools/openssl/build_win32.cmd b/tools/openssl/build_win32.cmd index 339b0bd934..55680a3b7f 100644 --- a/tools/openssl/build_win32.cmd +++ b/tools/openssl/build_win32.cmd @@ -1,11 +1,12 @@ @echo off -rd /s /q out32dll -rd /s /q tmp32dll +cd /d "%TEMP%" +rd /s /q openssl +mkdir openssl +cd /d openssl set LDFLAGS=/nologo /debug /SUBSYSTEM:CONSOLE",5.01" -perl Configure shared VC-WIN32 /D\"_USING_V110_SDK71_\" /D\"_WIN32_WINNT=0x0501\" +perl "%OPENSSL_ROOT_DIR%\Configure" shared VC-WIN32 /D\"_USING_V110_SDK71_\" /D\"_WIN32_WINNT=0x0501\" call %VS141COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvars32.bat -nmake clean nmake diff --git a/tools/openssl/build_win64.cmd b/tools/openssl/build_win64.cmd index 31645a8c69..12de1b5bec 100644 --- a/tools/openssl/build_win64.cmd +++ b/tools/openssl/build_win64.cmd @@ -1,10 +1,11 @@ @echo off -rd /s /q out32dll -rd /s /q tmp32dll +cd /d "%TEMP%" +rd /s /q openssl +mkdir openssl +cd /d openssl -perl Configure shared VC-WIN64A +perl "%OPENSSL_ROOT_DIR%\Configure" shared VC-WIN64A call %VS141COMNTOOLS%\..\..\VC\Auxiliary\Build\vcvars64.bat -nmake clean nmake |