-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
contrib(win32): bump opendht and openssl build
- Uses 1.1.1 stable branch of https://github.com/openssl/openssl instead of https://github.com/microsoft/openssl. Note that this build will not pass app certification for the Windows store. - bumps opendht to support the new OpenSSL build and removes some unused linkage - adds a 'use_cmake' key to the package.json windows contrib build system - allows us to shave about 4.5 min off openssl build time by defining MAKE_TOOL to jom.exe to override nmake - adds /FS to force synchronous PDB writes Change-Id: Idd06a0805b45fa19551c15d1859cbccca49e6bb6
- Loading branch information
Showing
7 changed files
with
91 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,11 @@ | ||
{ | ||
"name": "openssl", | ||
"version": "5cc1e25bc76bcf0db03bc37bd64b3290727963b6", | ||
"url": "https://github.com/Microsoft/openssl/archive/__VERSION__.tar.gz", | ||
"deps": [], | ||
"patches": [], | ||
"win_patches": [], | ||
"project_paths": [], | ||
"with_env" : "10.0.16299.0", | ||
"version": "OpenSSL_1_1_1-stable", | ||
"url": "https://github.com/openssl/openssl/archive/__VERSION__.tar.gz", | ||
"custom_scripts": { | ||
"pre_build": [], | ||
"build": [ | ||
"call perl Configure no-asm no-hw VC-WIN64A", | ||
"call ms/do_win64a", | ||
"set CL=/MP & call nmake -f ms/ntdll.mak" | ||
], | ||
"post_build": [] | ||
"call perl Configure no-asm no-hw no-tests /Z7 /FS VC-WIN64A", | ||
"if defined MAKE_TOOL (call %MAKE_TOOL%) else (call nmake)" | ||
] | ||
} | ||
} |