-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jom (parallel nmake) build for openssl windows
Summary: X-link: facebookincubator/zstrong#1084 openssl build on windows is slow due to nmake being single threaded fortunately the Qt developers had the same problem and produced jom - a nmake compatible make that adds the /j<parallelism> flag add a jom manifest and use it for the openssl build on windows Reviewed By: bigfootjon Differential Revision: D66818562 fbshipit-source-id: 88938dbc862da18ae7f75df51aa99bb669aae71a
- Loading branch information
1 parent
01235cd
commit 3f9b3f5
Showing
3 changed files
with
27 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# jom is compatible with MSVC nmake, but adds the /j<number of jobs> argment which | ||
# speeds up openssl build a lot | ||
[manifest] | ||
name = jom | ||
|
||
# see https://download.qt.io/official_releases/jom/changelog.txt for latest version | ||
[download.os=windows] | ||
url = https://download.qt.io/official_releases/jom/jom_1_1_4.zip | ||
sha256 = d533c1ef49214229681e90196ed2094691e8c4a0a0bef0b2c901debcb562682b | ||
|
||
[build.os=windows] | ||
builder = nop | ||
|
||
[install.files.os=windows] | ||
. = bin |
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 |
---|---|---|
|
@@ -31,4 +31,5 @@ builder = openssl | |
subdir = openssl-3.0.15 | ||
|
||
[dependencies.os=windows] | ||
jom | ||
perl |